Unicode Finder

"꾸" U+AFB8(HANGUL SYLLABLE GGU)

U+AFB8
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GGU

Programming

C
\uAFB8
JavaScript
\uAFB8
Java
\uAFB8
Json
\uAFB8
Python
\uAFB8
Perl
\x{AFB8}
PHP
\x{AFB8}
Ruby
\u{AFB8}
Rust
\u{AFB8}
Go
\uAFB8

Web

CSS
\00AFB8
HtmlDecimal
꾸
HtmlHexadecimal
꾸
Url
%EA%BE%B8

Code

MD5
1eb26d7078be77a58ec16164c590a1bf
Sha1
40329b72ae3faaf8c14b87db8e0a032304d1ceca
Base64
6r64

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAFB8';
console.log(char);  // Output: 꾸

Java:

char c = '\uAFB8';
System.out.println(c);  // Output: 꾸

JSON:

{"text": "\uAFB8"}  // Value: 꾸

Python:

char = '\uAFB8'
print(char)  # Output: 꾸

Perl:

my $char = "\x{AFB8}";
print $char;  # Output: 꾸

PHP:

$char = "\x{AFB8}";
echo $char;  // Output: 꾸

Ruby:

char = "\u{AFB8}"
puts char  # Output: 꾸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44984;</p>  <!-- Display: 꾸 -->

HTML Hexadecimal:

<p>HTML hex: &#xAFB8;</p>  <!-- Display: 꾸 -->

URL Encoding:

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

Encodings

MD5:

1eb26d7078be77a58ec16164c590a1bf

SHA1:

40329b72ae3faaf8c14b87db8e0a032304d1ceca

Base64:

6r64