Template:Binary/doc: Difference between revisions
m (→See also: clean up per WP:CAT#T and WP:AWBREQ add template:Sandbox other) |
m (1 revision imported: initial setup) |
(No difference)
|
Latest revision as of 05:32, 27 August 2024
This is a documentation subpage for Template:Binary. It contains usage information, categories and other content that is not part of the original Template page. |
Uses Lua: |
This template is for quickly converting a decimal number to binary.
Usage
Use {{Binary|x|y}}
where x is the decimal number and y is the decimal precision (positive numbers, defaults displays up to 10 digits following the binary point).
Examples:
Code | Result | Notes |
---|---|---|
128892}} | 111110111011111002 | Regular integer |
73.3333333|5}} | 1001001.010102 | Truncated decimal |
73.3333333|0}} | 10010012 | Truncated at decimal point |
73|5}} | 1001001.000002 | Decimals padded to integer |
73.25}} | 1001001.012 | Auto truncation |
73.25|4}} | 1001001.01002 | Decimals padded |
{{#expr:1+3/8}}}} | 1.0112 | Expression support |