Unicode Finder

"ꯄ" U+ABC4(MEETEI MAYEK LETTER PA)

U+ABC4
ブロック名
Meetei Mayek
名前
MEETEI MAYEK LETTER PA

Programming

C
\uABC4
JavaScript
\uABC4
Java
\uABC4
Json
\uABC4
Python
\uABC4
Perl
\x{ABC4}
PHP
\x{ABC4}
Ruby
\u{ABC4}
Rust
\u{ABC4}
Go
\uABC4

Web

CSS
\00ABC4
HtmlDecimal
ꯄ
HtmlHexadecimal
ꯄ
Url
%EA%AF%84

Code

MD5
9d067b1ef51b8cba59d3f5207528f7c4
Sha1
f861af911e94d78f62e68d7498e96cdb11399e5c
Base64
6q+E

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uABC4';
console.log(char);  // Output: ꯄ

Java:

char c = '\uABC4';
System.out.println(c);  // Output: ꯄ

JSON:

{"text": "\uABC4"}  // Value: ꯄ

Python:

char = '\uABC4'
print(char)  # Output: ꯄ

Perl:

my $char = "\x{ABC4}";
print $char;  # Output: ꯄ

PHP:

$char = "\x{ABC4}";
echo $char;  // Output: ꯄ

Ruby:

char = "\u{ABC4}"
puts char  # Output: ꯄ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#43972;</p>  <!-- Display: ꯄ -->

HTML Hexadecimal:

<p>HTML hex: &#xABC4;</p>  <!-- Display: ꯄ -->

URL Encoding:

// ꯄ URL encoding
https://unicodefinder.com/search.php?query=%EA%AF%84

Encodings

MD5:

9d067b1ef51b8cba59d3f5207528f7c4

SHA1:

f861af911e94d78f62e68d7498e96cdb11399e5c

Base64:

6q+E