Unicode Finder

"ꯦ" U+ABE6(MEETEI MAYEK VOWEL SIGN YENAP)

U+ABE6
ブロック名
Meetei Mayek
名前
MEETEI MAYEK VOWEL SIGN YENAP

Programming

C
\uABE6
JavaScript
\uABE6
Java
\uABE6
Json
\uABE6
Python
\uABE6
Perl
\x{ABE6}
PHP
\x{ABE6}
Ruby
\u{ABE6}
Rust
\u{ABE6}
Go
\uABE6

Web

CSS
\00ABE6
HtmlDecimal
ꯦ
HtmlHexadecimal
ꯦ
Url
%EA%AF%A6

Code

MD5
a62dbe6e55c6da142f70e6f67ef8235c
Sha1
308bba75240c2ccf83989e6c2d53edfbecaf65ef
Base64
6q+m

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uABE6';
console.log(char);  // Output: ꯦ

Java:

char c = '\uABE6';
System.out.println(c);  // Output: ꯦ

JSON:

{"text": "\uABE6"}  // Value: ꯦ

Python:

char = '\uABE6'
print(char)  # Output: ꯦ

Perl:

my $char = "\x{ABE6}";
print $char;  # Output: ꯦ

PHP:

$char = "\x{ABE6}";
echo $char;  // Output: ꯦ

Ruby:

char = "\u{ABE6}"
puts char  # Output: ꯦ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44006;</p>  <!-- Display: ꯦ -->

HTML Hexadecimal:

<p>HTML hex: &#xABE6;</p>  <!-- Display: ꯦ -->

URL Encoding:

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

Encodings

MD5:

a62dbe6e55c6da142f70e6f67ef8235c

SHA1:

308bba75240c2ccf83989e6c2d53edfbecaf65ef

Base64:

6q+m