Difference between revisions of "Template:Hex2/doc"

From blackwiki
Jump to navigation Jump to search
imported>John of Reading
m (Typo fixing, replaced: a 8 → an 8 using AWB)
Line 2: Line 2:
 
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
 
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
 
; Description of use
 
; Description of use
: Converts a 8-bit number to hexadecimal using two digits, useful for formating RGB color components.
+
: Converts an 8-bit number to hexadecimal using two digits, useful for formating RGB color components.
 
: This template can be substituted.
 
: This template can be substituted.
  

Revision as of 10:32, 17 May 2014

Description of use
Converts an 8-bit number to hexadecimal using two digits, useful for formating RGB color components.
This template can be substituted.
Input
  • one parameter, numeric in the range 0..255 (larger numbers will wrap around)
Output
  • a two-digit hex number
Examples
  • {{Hex2|0}}gives 00
  • {{subst:Hex2|0}} gives 00
  • {{Hex2|123}} gives 7B
  • {{subst:Hex2|123}}gives 7B
  • {{Hex2|255}} gives FF
  • {{subst:Hex2|255}} gives FF
See also
  • {{Hex3}} for formating 3 RGB components at once.