Unicode Finder

"ᇰ" U+11F0(HANGUL JONGSEONG YESIEUNG)

U+11F0
Tên Khối
Hangul Jamo
Tên
HANGUL JONGSEONG YESIEUNG

Programming

C
\u11F0
JavaScript
\u11F0
Java
\u11F0
Json
\u11F0
Python
\u11F0
Perl
\x{11F0}
PHP
\x{11F0}
Ruby
\u{11F0}
Rust
\u{11F0}
Go
\u11F0

Web

CSS
\0011F0
HtmlDecimal
ᇰ
HtmlHexadecimal
ᇰ
Url
%E1%87%B0

Code

MD5
de5dff4a30a016f042e595172c6bab5a
Sha1
c864875dc07c3d70a0b34030e276e1c32f7dab80
Base64
4Yew

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u11F0';
console.log(char);  // Output: ᇰ

Java:

char c = '\u11F0';
System.out.println(c);  // Output: ᇰ

JSON:

{"text": "\u11F0"}  // Value: ᇰ

Python:

char = '\u11F0'
print(char)  # Output: ᇰ

Perl:

my $char = "\x{11F0}";
print $char;  # Output: ᇰ

PHP:

$char = "\x{11F0}";
echo $char;  // Output: ᇰ

Ruby:

char = "\u{11F0}"
puts char  # Output: ᇰ

Rust:

let c = '\u{11F0}';
println!("{}", c);  // Output: ᇰ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0011F0";  /* Display: ᇰ */
}

HTML Decimal:

<p>HTML decimal: &#4592;</p>  <!-- Display: ᇰ -->

HTML Hexadecimal:

<p>HTML hex: &#x11F0;</p>  <!-- Display: ᇰ -->

URL Encoding:

// ᇰ URL encoding
https://unicodefinder.com/search.php?query=%E1%87%B0

Encodings

MD5:

de5dff4a30a016f042e595172c6bab5a

SHA1:

c864875dc07c3d70a0b34030e276e1c32f7dab80

Base64:

4Yew