တမ်းပလိတ်:Hexadecimal/doc
| ဤစာမျက်နှာသည် တမ်းပလိတ်:Hexadecimal တမ်းပလိတ်၏ အသုံးပြုနည်း လက်စွဲ (documentation) စာမျက်နှာခွဲ (subpage) တစ်ခုဖြစ်သည်။ ဤစာမျက်နှာတွင် မူရင်း တမ်းပလိတ် စာမျက်နှာ၏ အစိတ်အပိုင်း-မဟုတ်သော အသုံးပြုပုံပြုနည်းနှင့်သက်ဆိုင်သည့် သတင်းအချက်အလက်များ၊ ကဏ္ဍများနှင့် အခြားအချက်အလက်များ ပါဝင်နေနိုင်သည်။ |
| Uses Lua: |
ဤတမ်းပလိတ်သည် decimal ဂဏန်းမှ en:hexadecimalဂဏန်းသို့ အလွယ်တကူ ပြောင်းလဲနိုင်ရန် ပြုလုပ်ထားသည်။
အသုံးပြုပုံ
[ပြင်ဆင်ရန်]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.
ဥပမာများ
[ပြင်ဆင်ရန်]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