Blob Blame History Raw
<?xml version="1.0" encoding="utf-8"?>
<page xmlns="http://projectmallard.org/1.0/" type="guide" id="conv-base" xml:lang="zh-TW">

    <info>
        <link type="guide" xref="index#conversion"/>
    </info>

	<title>數基</title>
    
    <p>
    To convert the number to a different base representation use the <em>in</em> operator.
    </p>
    <example>
    <p>
    12 in hex
    </p>
    <p>
    5 in binary
    </p>
    <p>
    1A₁₆ in dec
    </p>
    <p>
    1010₂ in octal
    </p>
    </example>
    <note>
      <p>Number Base conversions must be performed using the keyboard.</p>
    </note>
</page>