Unicode Finder

"깔" U+AE54(HANGUL SYLLABLE GGAL)

U+AE54
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE GGAL

Programming

C
\uAE54
JavaScript
\uAE54
Java
\uAE54
Json
\uAE54
Python
\uAE54
Perl
\x{AE54}
PHP
\x{AE54}
Ruby
\u{AE54}
Rust
\u{AE54}
Go
\uAE54

Web

CSS
\00AE54
HtmlDecimal
깔
HtmlHexadecimal
깔
Url
%EA%B9%94

Code

MD5
17c61de90dcd33f7fc597e11a35fbb61
Sha1
8043d74c4da70a692c0a2957c615f8dd80143fd0
Base64
6rmU

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uAE54';
console.log(char);  // Output: 깔

Java:

char c = '\uAE54';
System.out.println(c);  // Output: 깔

JSON:

{"text": "\uAE54"}  // Value: 깔

Python:

char = '\uAE54'
print(char)  # Output: 깔

Perl:

my $char = "\x{AE54}";
print $char;  # Output: 깔

PHP:

$char = "\x{AE54}";
echo $char;  // Output: 깔

Ruby:

char = "\u{AE54}"
puts char  # Output: 깔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44628;</p>  <!-- Display: 깔 -->

HTML Hexadecimal:

<p>HTML hex: &#xAE54;</p>  <!-- Display: 깔 -->

URL Encoding:

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

Encodings

MD5:

17c61de90dcd33f7fc597e11a35fbb61

SHA1:

8043d74c4da70a692c0a2957c615f8dd80143fd0

Base64:

6rmU