Unicode Finder

"ᅁ" U+1141(HANGUL CHOSEONG IEUNG-KIYEOK)

U+1141
Nama Blok
Hangul Jamo
Nama
HANGUL CHOSEONG IEUNG-KIYEOK

Programming

C
\u1141
JavaScript
\u1141
Java
\u1141
Json
\u1141
Python
\u1141
Perl
\x{1141}
PHP
\x{1141}
Ruby
\u{1141}
Rust
\u{1141}
Go
\u1141

Web

CSS
\001141
HtmlDecimal
ᅁ
HtmlHexadecimal
ᅁ
Url
%E1%85%81

Code

MD5
da9396162496cf2867b124e12d3dcf73
Sha1
6f0901f2e34b14739d3f3262b127b3dcb93ae6df
Base64
4YWB

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1141';
console.log(char);  // Output: ᅁ

Java:

char c = '\u1141';
System.out.println(c);  // Output: ᅁ

JSON:

{"text": "\u1141"}  // Value: ᅁ

Python:

char = '\u1141'
print(char)  # Output: ᅁ

Perl:

my $char = "\x{1141}";
print $char;  # Output: ᅁ

PHP:

$char = "\x{1141}";
echo $char;  // Output: ᅁ

Ruby:

char = "\u{1141}"
puts char  # Output: ᅁ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001141";  /* Display: ᅁ */
}

HTML Decimal:

<p>HTML decimal: &#4417;</p>  <!-- Display: ᅁ -->

HTML Hexadecimal:

<p>HTML hex: &#x1141;</p>  <!-- Display: ᅁ -->

URL Encoding:

// ᅁ URL encoding
https://unicodefinder.com/search.php?query=%E1%85%81

Encodings

MD5:

da9396162496cf2867b124e12d3dcf73

SHA1:

6f0901f2e34b14739d3f3262b127b3dcb93ae6df

Base64:

4YWB