Unicode Finder

"갑" U+AC11(HANGUL SYLLABLE GAB)

U+AC11
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE GAB

Programming

C
\uAC11
JavaScript
\uAC11
Java
\uAC11
Json
\uAC11
Python
\uAC11
Perl
\x{AC11}
PHP
\x{AC11}
Ruby
\u{AC11}
Rust
\u{AC11}
Go
\uAC11

Web

CSS
\00AC11
HtmlDecimal
갑
HtmlHexadecimal
갑
Url
%EA%B0%91

Code

MD5
3d5171b0ef6ead7f3568e813f0f74ee8
Sha1
1fcdc9dae26fdb2107be8f9ecfb0dd31c6fcfaba
Base64
6rCR

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uAC11';
console.log(char);  // Output: 갑

Java:

char c = '\uAC11';
System.out.println(c);  // Output: 갑

JSON:

{"text": "\uAC11"}  // Value: 갑

Python:

char = '\uAC11'
print(char)  # Output: 갑

Perl:

my $char = "\x{AC11}";
print $char;  # Output: 갑

PHP:

$char = "\x{AC11}";
echo $char;  // Output: 갑

Ruby:

char = "\u{AC11}"
puts char  # Output: 갑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00AC11";  /* Display: 갑 */
}

HTML Decimal:

<p>HTML decimal: &#44049;</p>  <!-- Display: 갑 -->

HTML Hexadecimal:

<p>HTML hex: &#xAC11;</p>  <!-- Display: 갑 -->

URL Encoding:

// 갑 URL encoding
https://unicodefinder.com/search.php?query=%EA%B0%91

Encodings

MD5:

3d5171b0ef6ead7f3568e813f0f74ee8

SHA1:

1fcdc9dae26fdb2107be8f9ecfb0dd31c6fcfaba

Base64:

6rCR