Unicode Finder

"ᄷ" U+1137(HANGUL CHOSEONG SIOS-CHIEUCH)

U+1137
Nama Blok
Hangul Jamo
Nama
HANGUL CHOSEONG SIOS-CHIEUCH

Programming

C
\u1137
JavaScript
\u1137
Java
\u1137
Json
\u1137
Python
\u1137
Perl
\x{1137}
PHP
\x{1137}
Ruby
\u{1137}
Rust
\u{1137}
Go
\u1137

Web

CSS
\001137
HtmlDecimal
ᄷ
HtmlHexadecimal
ᄷ
Url
%E1%84%B7

Code

MD5
210f73f068713d6a4465734d9de17142
Sha1
aa0b8a50e9986b48e1b91081ae745f235e3e951c
Base64
4YS3

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1137';
console.log(char);  // Output: ᄷ

Java:

char c = '\u1137';
System.out.println(c);  // Output: ᄷ

JSON:

{"text": "\u1137"}  // Value: ᄷ

Python:

char = '\u1137'
print(char)  # Output: ᄷ

Perl:

my $char = "\x{1137}";
print $char;  # Output: ᄷ

PHP:

$char = "\x{1137}";
echo $char;  // Output: ᄷ

Ruby:

char = "\u{1137}"
puts char  # Output: ᄷ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001137";  /* Display: ᄷ */
}

HTML Decimal:

<p>HTML decimal: &#4407;</p>  <!-- Display: ᄷ -->

HTML Hexadecimal:

<p>HTML hex: &#x1137;</p>  <!-- Display: ᄷ -->

URL Encoding:

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

Encodings

MD5:

210f73f068713d6a4465734d9de17142

SHA1:

aa0b8a50e9986b48e1b91081ae745f235e3e951c

Base64:

4YS3