Unicode Finder

"၆" U+1046(MYANMAR DIGIT SIX)

U+1046
ब्लॉक का नाम
Myanmar
नाम
MYANMAR DIGIT SIX

Programming

C
\u1046
JavaScript
\u1046
Java
\u1046
Json
\u1046
Python
\u1046
Perl
\x{1046}
PHP
\x{1046}
Ruby
\u{1046}
Rust
\u{1046}
Go
\u1046

Web

CSS
\001046
HtmlDecimal
၆
HtmlHexadecimal
၆
Url
%E1%81%86

Code

MD5
014e9c0a81f49f90924b9b9b506c96ac
Sha1
e54ab09316b9d4e078e421aee94887554d247e16
Base64
4YGG

उपयोग के उदाहरण

Programming Languages

C:

char c = '\u1046';
printf("%c\n", c);  // Output: ၆

JavaScript:

const char = '\u1046';
console.log(char);  // Output: ၆

Java:

char c = '\u1046';
System.out.println(c);  // Output: ၆

JSON:

{"text": "\u1046"}  // Value: ၆

Python:

char = '\u1046'
print(char)  # Output: ၆

Perl:

my $char = "\x{1046}";
print $char;  # Output: ၆

PHP:

$char = "\x{1046}";
echo $char;  // Output: ၆

Ruby:

char = "\u{1046}"
puts char  # Output: ၆

Rust:

let c = '\u{1046}';
println!("{}", c);  // Output: ၆

Go:

char := '\u1046'
fmt.Printf("%c\n", char)  // Output: ၆

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001046";  /* Display: ၆ */
}

HTML Decimal:

<p>HTML decimal: &#4166;</p>  <!-- Display: ၆ -->

HTML Hexadecimal:

<p>HTML hex: &#x1046;</p>  <!-- Display: ၆ -->

URL Encoding:

// ၆ URL encoding
https://unicodefinder.com/search.php?query=%E1%81%86

Encodings

MD5:

014e9c0a81f49f90924b9b9b506c96ac

SHA1:

e54ab09316b9d4e078e421aee94887554d247e16

Base64:

4YGG