Unicode Finder

"글" U+AE00(HANGUL SYLLABLE GEUL)

U+AE00
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GEUL

Programming

C
\uAE00
JavaScript
\uAE00
Java
\uAE00
Json
\uAE00
Python
\uAE00
Perl
\x{AE00}
PHP
\x{AE00}
Ruby
\u{AE00}
Rust
\u{AE00}
Go
\uAE00

Web

CSS
\00AE00
HtmlDecimal
글
HtmlHexadecimal
글
Url
%EA%B8%80

Code

MD5
d1249dad4ba054276016f2a5a76d78ed
Sha1
789ff77e004ec94085c733d49270f268e209ceb8
Base64
6riA

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAE00';
console.log(char);  // Output: 글

Java:

char c = '\uAE00';
System.out.println(c);  // Output: 글

JSON:

{"text": "\uAE00"}  // Value: 글

Python:

char = '\uAE00'
print(char)  # Output: 글

Perl:

my $char = "\x{AE00}";
print $char;  # Output: 글

PHP:

$char = "\x{AE00}";
echo $char;  // Output: 글

Ruby:

char = "\u{AE00}"
puts char  # Output: 글

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44544;</p>  <!-- Display: 글 -->

HTML Hexadecimal:

<p>HTML hex: &#xAE00;</p>  <!-- Display: 글 -->

URL Encoding:

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

Encodings

MD5:

d1249dad4ba054276016f2a5a76d78ed

SHA1:

789ff77e004ec94085c733d49270f268e209ceb8

Base64:

6riA