Unicode Finder

"ᄳ" U+1133(HANGUL CHOSEONG SIOS-PIEUP-KIYEOK)

U+1133
Tên Khối
Hangul Jamo
Tên
HANGUL CHOSEONG SIOS-PIEUP-KIYEOK

Programming

C
\u1133
JavaScript
\u1133
Java
\u1133
Json
\u1133
Python
\u1133
Perl
\x{1133}
PHP
\x{1133}
Ruby
\u{1133}
Rust
\u{1133}
Go
\u1133

Web

CSS
\001133
HtmlDecimal
ᄳ
HtmlHexadecimal
ᄳ
Url
%E1%84%B3

Code

MD5
e9ff6506226acd7c20a621d566dca140
Sha1
e14909adfad991658f6a2e627982a4f0f0c2c7bf
Base64
4YSz

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1133';
console.log(char);  // Output: ᄳ

Java:

char c = '\u1133';
System.out.println(c);  // Output: ᄳ

JSON:

{"text": "\u1133"}  // Value: ᄳ

Python:

char = '\u1133'
print(char)  # Output: ᄳ

Perl:

my $char = "\x{1133}";
print $char;  # Output: ᄳ

PHP:

$char = "\x{1133}";
echo $char;  // Output: ᄳ

Ruby:

char = "\u{1133}"
puts char  # Output: ᄳ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001133";  /* Display: ᄳ */
}

HTML Decimal:

<p>HTML decimal: &#4403;</p>  <!-- Display: ᄳ -->

HTML Hexadecimal:

<p>HTML hex: &#x1133;</p>  <!-- Display: ᄳ -->

URL Encoding:

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

Encodings

MD5:

e9ff6506226acd7c20a621d566dca140

SHA1:

e14909adfad991658f6a2e627982a4f0f0c2c7bf

Base64:

4YSz