Unicode Finder

"ᅉ" U+1149(HANGUL CHOSEONG IEUNG-CHIEUCH)

U+1149
Tên Khối
Hangul Jamo
Tên
HANGUL CHOSEONG IEUNG-CHIEUCH

Programming

C
\u1149
JavaScript
\u1149
Java
\u1149
Json
\u1149
Python
\u1149
Perl
\x{1149}
PHP
\x{1149}
Ruby
\u{1149}
Rust
\u{1149}
Go
\u1149

Web

CSS
\001149
HtmlDecimal
ᅉ
HtmlHexadecimal
ᅉ
Url
%E1%85%89

Code

MD5
5c9636714eba02db59dd425d2800da12
Sha1
ea1ea86a227ce45403c0e05ca661033b45ee0c2f
Base64
4YWJ

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1149';
console.log(char);  // Output: ᅉ

Java:

char c = '\u1149';
System.out.println(c);  // Output: ᅉ

JSON:

{"text": "\u1149"}  // Value: ᅉ

Python:

char = '\u1149'
print(char)  # Output: ᅉ

Perl:

my $char = "\x{1149}";
print $char;  # Output: ᅉ

PHP:

$char = "\x{1149}";
echo $char;  // Output: ᅉ

Ruby:

char = "\u{1149}"
puts char  # Output: ᅉ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001149";  /* Display: ᅉ */
}

HTML Decimal:

<p>HTML decimal: &#4425;</p>  <!-- Display: ᅉ -->

HTML Hexadecimal:

<p>HTML hex: &#x1149;</p>  <!-- Display: ᅉ -->

URL Encoding:

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

Encodings

MD5:

5c9636714eba02db59dd425d2800da12

SHA1:

ea1ea86a227ce45403c0e05ca661033b45ee0c2f

Base64:

4YWJ