Unicode Finder

"ꩫ" U+AA6B(MYANMAR LETTER KHAMTI NA)

U+AA6B
ブロック名
Myanmar Extended-A
名前
MYANMAR LETTER KHAMTI NA

Programming

C
\uAA6B
JavaScript
\uAA6B
Java
\uAA6B
Json
\uAA6B
Python
\uAA6B
Perl
\x{AA6B}
PHP
\x{AA6B}
Ruby
\u{AA6B}
Rust
\u{AA6B}
Go
\uAA6B

Web

CSS
\00AA6B
HtmlDecimal
ꩫ
HtmlHexadecimal
ꩫ
Url
%EA%A9%AB

Code

MD5
0c2106a4582df52bc1317d1c28e7e0e3
Sha1
46070852458f91a611efd7640f91a9d8ae4b2f9d
Base64
6qmr

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uAA6B';
console.log(char);  // Output: ꩫ

Java:

char c = '\uAA6B';
System.out.println(c);  // Output: ꩫ

JSON:

{"text": "\uAA6B"}  // Value: ꩫ

Python:

char = '\uAA6B'
print(char)  # Output: ꩫ

Perl:

my $char = "\x{AA6B}";
print $char;  # Output: ꩫ

PHP:

$char = "\x{AA6B}";
echo $char;  // Output: ꩫ

Ruby:

char = "\u{AA6B}"
puts char  # Output: ꩫ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00AA6B";  /* Display: ꩫ */
}

HTML Decimal:

<p>HTML decimal: &#43627;</p>  <!-- Display: ꩫ -->

HTML Hexadecimal:

<p>HTML hex: &#xAA6B;</p>  <!-- Display: ꩫ -->

URL Encoding:

// ꩫ URL encoding
https://unicodefinder.com/search.php?query=%EA%A9%AB

Encodings

MD5:

0c2106a4582df52bc1317d1c28e7e0e3

SHA1:

46070852458f91a611efd7640f91a9d8ae4b2f9d

Base64:

6qmr