Unicode Finder

"ᄆ" U+1106(HANGUL CHOSEONG MIEUM)

U+1106
Nama Blok
Hangul Jamo
Nama
HANGUL CHOSEONG MIEUM

Programming

C
\u1106
JavaScript
\u1106
Java
\u1106
Json
\u1106
Python
\u1106
Perl
\x{1106}
PHP
\x{1106}
Ruby
\u{1106}
Rust
\u{1106}
Go
\u1106

Web

CSS
\001106
HtmlDecimal
ᄆ
HtmlHexadecimal
ᄆ
Url
%E1%84%86

Code

MD5
6367cb43e8eadf20b60ccc0f7ed13822
Sha1
fedd1695179aba34c7c43f8ae4054c6d81358777
Base64
4YSG

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1106';
console.log(char);  // Output: ᄆ

Java:

char c = '\u1106';
System.out.println(c);  // Output: ᄆ

JSON:

{"text": "\u1106"}  // Value: ᄆ

Python:

char = '\u1106'
print(char)  # Output: ᄆ

Perl:

my $char = "\x{1106}";
print $char;  # Output: ᄆ

PHP:

$char = "\x{1106}";
echo $char;  // Output: ᄆ

Ruby:

char = "\u{1106}"
puts char  # Output: ᄆ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001106";  /* Display: ᄆ */
}

HTML Decimal:

<p>HTML decimal: &#4358;</p>  <!-- Display: ᄆ -->

HTML Hexadecimal:

<p>HTML hex: &#x1106;</p>  <!-- Display: ᄆ -->

URL Encoding:

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

Encodings

MD5:

6367cb43e8eadf20b60ccc0f7ed13822

SHA1:

fedd1695179aba34c7c43f8ae4054c6d81358777

Base64:

4YSG