Difference between revisions of "Template:Hexadecimal/doc"

From blackwiki
Jump to navigation Jump to search
imported>Frietjes
imported>Cedar101
(→‎See also: {{tlx|Dec2hex}})
 
(10 intermediate revisions by 8 users not shown)
Line 1: Line 1:
 
{{Documentation subpage}}
 
{{Documentation subpage}}
{{intricate template}}
+
{{lua|Module:BaseConvert}}
 
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
 
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
 
This template makes it easy to convert from decimal to [[hexadecimal]].
 
This template makes it easy to convert from decimal to [[hexadecimal]].
 
=== Usage ===
 
=== Usage ===
Use: <code><nowiki>{{Hexadecimal|x}}</nowiki></code> where x is the decimal number to be converted to a hexadecimal. Numbers greater than 268,435,455 or less than 0 will return an "N/A", decimals and fractions will be rounded down. The number is, by default, formatted with a final subscript 16 to display the base. An optional second parameter of <code><nowiki>|hex</nowiki></code> will replace the base with "hex".
+
Use: <code><nowiki>{{Hexadecimal|x}}</nowiki></code> where x is the decimal number to be converted to a hexadecimal. Decimals and fractions will be rounded down. The number is, by default, formatted with a final subscript 16 to display the base. An optional second parameter of <code><nowiki>|hex</nowiki></code> will replace the base with "hex".
  
 
To opt out of the subscript, use a second parameter of <code><nowiki>|no</nowiki></code> (or equivalently <code><nowiki>|none</nowiki></code>), which also forces the display of at least two hexadecimal digits (instead of just one for values lower than 16).
 
To opt out of the subscript, use a second parameter of <code><nowiki>|no</nowiki></code> (or equivalently <code><nowiki>|none</nowiki></code>), which also forces the display of at least two hexadecimal digits (instead of just one for values lower than 16).
Line 20: Line 20:
 
: <code><nowiki>{{Hexadecimal|15|hex}}</nowiki></code> → {{Hexadecimal|15|hex}}
 
: <code><nowiki>{{Hexadecimal|15|hex}}</nowiki></code> → {{Hexadecimal|15|hex}}
 
: <code><nowiki>{{Hexadecimal|3256|hex}}</nowiki></code> → {{Hexadecimal|3256|hex}}
 
: <code><nowiki>{{Hexadecimal|3256|hex}}</nowiki></code> → {{Hexadecimal|3256|hex}}
 +
 +
To display single digits:
 +
: <code><nowiki>{{Hexadecimal|0|digit}}</nowiki></code> → {{Hexadecimal|0|digit}}
 +
: <code><nowiki>{{Hexadecimal|10|digit}}</nowiki></code> → {{Hexadecimal|10|digit}}
 +
: <code><nowiki>{{Hexadecimal|15|digit}}</nowiki></code> → {{Hexadecimal|15|digit}}
  
 
To convert an [[RGB color model|RGB color]] from decimal code to [[hex code]]:
 
To convert an [[RGB color model|RGB color]] from decimal code to [[hex code]]:
 
: <code><nowiki>{{Hexadecimal|255|no}}{{Hexadecimal|165|no}}{{Hexadecimal|0|no}}</nowiki></code> → {{Hexadecimal|255|no}}{{Hexadecimal|165|no}}{{Hexadecimal|0|no}}
 
: <code><nowiki>{{Hexadecimal|255|no}}{{Hexadecimal|165|no}}{{Hexadecimal|0|no}}</nowiki></code> → {{Hexadecimal|255|no}}{{Hexadecimal|165|no}}{{Hexadecimal|0|no}}
 +
 +
;Not a number input
 +
: <code><nowiki>{{Hexadecimal|}}</nowiki></code> → {{Hexadecimal|}}
 +
: <code><nowiki>{{Hexadecimal}}</nowiki></code> → {{Hexadecimal}}
 +
: <code><nowiki>{{Hexadecimal|foobar}}</nowiki></code> → {{Hexadecimal|foobar}}
 +
: <code><nowiki>{{Hexadecimal|A B}}</nowiki></code> → {{Hexadecimal|A B}}
  
 
=== See also ===
 
=== See also ===
*[[Template:Roman]]
+
* {{tlx|Dec2hex}}
*[[Template:Binary]]
+
{{Math templates|numeral systems}}<includeonly>{{Sandbox other||
*[[Template:Octal]]
+
<!-- CATEGORIES HERE, THANKS -->
*[[Template:Duodecimal]]
+
[[Category:Numerical conversion templates]]
*[[Template:Hex2dec]]
+
[[Category:Mathematical function templates]]
*[[Template:Dec2hex]]
+
 
<includeonly>
+
}}</includeonly>
<!-- CATEGORIES AND INTERWIKIS HERE, THANKS -->
 
[[Category:Numerical conversion templates|{{PAGENAME}}]]
 
[[eo:Ŝablono:Deksesuma]]
 
[[hy:Կաղապար:Hexadecimal]]
 
[[id:Templat:Hexadecimal]]
 
[[ja:Template:Hexadecimal]]
 
[[ro:Format:Hexazecimal]]
 
[[ur:سانچہ:Hexadecimal]]
 
</includeonly>
 

Latest revision as of 02:52, 31 July 2020

This template makes it easy to convert from decimal to hexadecimal.

Usage

Use: {{Hexadecimal|x}} where x is the decimal number to be converted to a hexadecimal. Decimals and fractions will be rounded down. The number is, by default, formatted with a final subscript 16 to display the base. An optional second parameter of |hex will replace the base with "hex".

To opt out of the subscript, use a second parameter of |no (or equivalently |none), which also forces the display of at least two hexadecimal digits (instead of just one for values lower than 16).

To show a single digit, without the subscript and without the 0 prefix, set the second parameter to |digit.

Examples

To convert a number to a base 16:

{{Hexadecimal|0}} → 016
{{Hexadecimal|15}} → F16
{{Hexadecimal|3256}} → CB816

To convert a number to a base hex:

{{Hexadecimal|0|hex}} → 0hex
{{Hexadecimal|15|hex}} → Fhex
{{Hexadecimal|3256|hex}} → CB8hex

To display single digits:

{{Hexadecimal|0|digit}} → 0
{{Hexadecimal|10|digit}} → A
{{Hexadecimal|15|digit}} → F

To convert an RGB color from decimal code to hex code:

{{Hexadecimal|255|no}}{{Hexadecimal|165|no}}{{Hexadecimal|0|no}} → FFA500
Not a number input
{{Hexadecimal|}}
{{Hexadecimal}} → 016
{{Hexadecimal|foobar}} → foobar
{{Hexadecimal|A B}} → A B

See also