Unicode Finder

"깗" U+AE57(HANGUL SYLLABLE GGALB)

U+AE57
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GGALB

Programming

C
\uAE57
JavaScript
\uAE57
Java
\uAE57
Json
\uAE57
Python
\uAE57
Perl
\x{AE57}
PHP
\x{AE57}
Ruby
\u{AE57}
Rust
\u{AE57}
Go
\uAE57

Web

CSS
\00AE57
HtmlDecimal
깗
HtmlHexadecimal
깗
Url
%EA%B9%97

Code

MD5
0209feafa6af3cebc493babce6eedded
Sha1
83a34df3468ac328012f9d1cc585f981e166a589
Base64
6rmX

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAE57';
console.log(char);  // Output: 깗

Java:

char c = '\uAE57';
System.out.println(c);  // Output: 깗

JSON:

{"text": "\uAE57"}  // Value: 깗

Python:

char = '\uAE57'
print(char)  # Output: 깗

Perl:

my $char = "\x{AE57}";
print $char;  # Output: 깗

PHP:

$char = "\x{AE57}";
echo $char;  // Output: 깗

Ruby:

char = "\u{AE57}"
puts char  # Output: 깗

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44631;</p>  <!-- Display: 깗 -->

HTML Hexadecimal:

<p>HTML hex: &#xAE57;</p>  <!-- Display: 깗 -->

URL Encoding:

// 깗 URL encoding
https://unicodefinder.com/search.php?query=%EA%B9%97

Encodings

MD5:

0209feafa6af3cebc493babce6eedded

SHA1:

83a34df3468ac328012f9d1cc585f981e166a589

Base64:

6rmX