Unicode Finder

"걀" U+AC40(HANGUL SYLLABLE GYAL)

U+AC40
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE GYAL

Programming

C
\uAC40
JavaScript
\uAC40
Java
\uAC40
Json
\uAC40
Python
\uAC40
Perl
\x{AC40}
PHP
\x{AC40}
Ruby
\u{AC40}
Rust
\u{AC40}
Go
\uAC40

Web

CSS
\00AC40
HtmlDecimal
걀
HtmlHexadecimal
걀
Url
%EA%B1%80

Code

MD5
3d6b5d745bdf2da9bf0fafba4d0364ca
Sha1
4394eb2d52e417c9efaf4dfc6145b177e36beb41
Base64
6rGA

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uAC40';
console.log(char);  // Output: 걀

Java:

char c = '\uAC40';
System.out.println(c);  // Output: 걀

JSON:

{"text": "\uAC40"}  // Value: 걀

Python:

char = '\uAC40'
print(char)  # Output: 걀

Perl:

my $char = "\x{AC40}";
print $char;  # Output: 걀

PHP:

$char = "\x{AC40}";
echo $char;  // Output: 걀

Ruby:

char = "\u{AC40}"
puts char  # Output: 걀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44096;</p>  <!-- Display: 걀 -->

HTML Hexadecimal:

<p>HTML hex: &#xAC40;</p>  <!-- Display: 걀 -->

URL Encoding:

// 걀 URL encoding
https://unicodefinder.com/search.php?query=%EA%B1%80

Encodings

MD5:

3d6b5d745bdf2da9bf0fafba4d0364ca

SHA1:

4394eb2d52e417c9efaf4dfc6145b177e36beb41

Base64:

6rGA