Unicode Finder

"ᄠ" U+1120(HANGUL CHOSEONG PIEUP-TIKEUT)

U+1120
Nama Blok
Hangul Jamo
Nama
HANGUL CHOSEONG PIEUP-TIKEUT

Programming

C
\u1120
JavaScript
\u1120
Java
\u1120
Json
\u1120
Python
\u1120
Perl
\x{1120}
PHP
\x{1120}
Ruby
\u{1120}
Rust
\u{1120}
Go
\u1120

Web

CSS
\001120
HtmlDecimal
ᄠ
HtmlHexadecimal
ᄠ
Url
%E1%84%A0

Code

MD5
38d4f95703de6303556cc7a941e91305
Sha1
df7fa396b1c2fea5052b0875578675bd6433cbd3
Base64
4YSg

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1120';
console.log(char);  // Output: ᄠ

Java:

char c = '\u1120';
System.out.println(c);  // Output: ᄠ

JSON:

{"text": "\u1120"}  // Value: ᄠ

Python:

char = '\u1120'
print(char)  # Output: ᄠ

Perl:

my $char = "\x{1120}";
print $char;  # Output: ᄠ

PHP:

$char = "\x{1120}";
echo $char;  // Output: ᄠ

Ruby:

char = "\u{1120}"
puts char  # Output: ᄠ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001120";  /* Display: ᄠ */
}

HTML Decimal:

<p>HTML decimal: &#4384;</p>  <!-- Display: ᄠ -->

HTML Hexadecimal:

<p>HTML hex: &#x1120;</p>  <!-- Display: ᄠ -->

URL Encoding:

// ᄠ URL encoding
https://unicodefinder.com/search.php?query=%E1%84%A0

Encodings

MD5:

38d4f95703de6303556cc7a941e91305

SHA1:

df7fa396b1c2fea5052b0875578675bd6433cbd3

Base64:

4YSg