Unicode Finder

"ᄔ" U+1114(HANGUL CHOSEONG SSANGNIEUN)

U+1114
Nazwa Bloku
Hangul Jamo
Nazwa
HANGUL CHOSEONG SSANGNIEUN

Programming

C
\u1114
JavaScript
\u1114
Java
\u1114
Json
\u1114
Python
\u1114
Perl
\x{1114}
PHP
\x{1114}
Ruby
\u{1114}
Rust
\u{1114}
Go
\u1114

Web

CSS
\001114
HtmlDecimal
ᄔ
HtmlHexadecimal
ᄔ
Url
%E1%84%94

Code

MD5
f682cd9def47cea9b423df9bef9e5c7d
Sha1
f9e741e3ddf2e93c0a5ece4d583e222ef0efea67
Base64
4YSU

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1114';
console.log(char);  // Output: ᄔ

Java:

char c = '\u1114';
System.out.println(c);  // Output: ᄔ

JSON:

{"text": "\u1114"}  // Value: ᄔ

Python:

char = '\u1114'
print(char)  # Output: ᄔ

Perl:

my $char = "\x{1114}";
print $char;  # Output: ᄔ

PHP:

$char = "\x{1114}";
echo $char;  // Output: ᄔ

Ruby:

char = "\u{1114}"
puts char  # Output: ᄔ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001114";  /* Display: ᄔ */
}

HTML Decimal:

<p>HTML decimal: &#4372;</p>  <!-- Display: ᄔ -->

HTML Hexadecimal:

<p>HTML hex: &#x1114;</p>  <!-- Display: ᄔ -->

URL Encoding:

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

Encodings

MD5:

f682cd9def47cea9b423df9bef9e5c7d

SHA1:

f9e741e3ddf2e93c0a5ece4d583e222ef0efea67

Base64:

4YSU