Unicode Finder

"ꯂ" U+ABC2(MEETEI MAYEK LETTER LAI)

U+ABC2
ブロック名
Meetei Mayek
名前
MEETEI MAYEK LETTER LAI

Programming

C
\uABC2
JavaScript
\uABC2
Java
\uABC2
Json
\uABC2
Python
\uABC2
Perl
\x{ABC2}
PHP
\x{ABC2}
Ruby
\u{ABC2}
Rust
\u{ABC2}
Go
\uABC2

Web

CSS
\00ABC2
HtmlDecimal
ꯂ
HtmlHexadecimal
ꯂ
Url
%EA%AF%82

Code

MD5
4eb3cdea40b18cf98e31315a9963a1de
Sha1
27338e74ecc4a717f6e7ed9a41606886a77d6761
Base64
6q+C

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uABC2';
console.log(char);  // Output: ꯂ

Java:

char c = '\uABC2';
System.out.println(c);  // Output: ꯂ

JSON:

{"text": "\uABC2"}  // Value: ꯂ

Python:

char = '\uABC2'
print(char)  # Output: ꯂ

Perl:

my $char = "\x{ABC2}";
print $char;  # Output: ꯂ

PHP:

$char = "\x{ABC2}";
echo $char;  // Output: ꯂ

Ruby:

char = "\u{ABC2}"
puts char  # Output: ꯂ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#43970;</p>  <!-- Display: ꯂ -->

HTML Hexadecimal:

<p>HTML hex: &#xABC2;</p>  <!-- Display: ꯂ -->

URL Encoding:

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

Encodings

MD5:

4eb3cdea40b18cf98e31315a9963a1de

SHA1:

27338e74ecc4a717f6e7ed9a41606886a77d6761

Base64:

6q+C