Unicode Finder

"ᄖ" U+1116(HANGUL CHOSEONG NIEUN-PIEUP)

U+1116
区块名称
Hangul Jamo
名称
HANGUL CHOSEONG NIEUN-PIEUP

Programming

C
\u1116
JavaScript
\u1116
Java
\u1116
Json
\u1116
Python
\u1116
Perl
\x{1116}
PHP
\x{1116}
Ruby
\u{1116}
Rust
\u{1116}
Go
\u1116

Web

CSS
\001116
HtmlDecimal
ᄖ
HtmlHexadecimal
ᄖ
Url
%E1%84%96

Code

MD5
788c6fbeaa2f4c1858048306bd66afaf
Sha1
e2685d5c9d4b47c50f9f126313cc09c383006c09
Base64
4YSW

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1116';
console.log(char);  // Output: ᄖ

Java:

char c = '\u1116';
System.out.println(c);  // Output: ᄖ

JSON:

{"text": "\u1116"}  // Value: ᄖ

Python:

char = '\u1116'
print(char)  # Output: ᄖ

Perl:

my $char = "\x{1116}";
print $char;  # Output: ᄖ

PHP:

$char = "\x{1116}";
echo $char;  // Output: ᄖ

Ruby:

char = "\u{1116}"
puts char  # Output: ᄖ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001116";  /* Display: ᄖ */
}

HTML Decimal:

<p>HTML decimal: &#4374;</p>  <!-- Display: ᄖ -->

HTML Hexadecimal:

<p>HTML hex: &#x1116;</p>  <!-- Display: ᄖ -->

URL Encoding:

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

Encodings

MD5:

788c6fbeaa2f4c1858048306bd66afaf

SHA1:

e2685d5c9d4b47c50f9f126313cc09c383006c09

Base64:

4YSW