Unicode Finder

"꾴" U+AFB4(HANGUL SYLLABLE GGYOK)

U+AFB4
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GGYOK

Programming

C
\uAFB4
JavaScript
\uAFB4
Java
\uAFB4
Json
\uAFB4
Python
\uAFB4
Perl
\x{AFB4}
PHP
\x{AFB4}
Ruby
\u{AFB4}
Rust
\u{AFB4}
Go
\uAFB4

Web

CSS
\00AFB4
HtmlDecimal
꾴
HtmlHexadecimal
꾴
Url
%EA%BE%B4

Code

MD5
0c8488056e1e2567fe8de6fa9654ff4d
Sha1
52b6eace8d7187e7e15a68a04c82de0789d12d37
Base64
6r60

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAFB4';
console.log(char);  // Output: 꾴

Java:

char c = '\uAFB4';
System.out.println(c);  // Output: 꾴

JSON:

{"text": "\uAFB4"}  // Value: 꾴

Python:

char = '\uAFB4'
print(char)  # Output: 꾴

Perl:

my $char = "\x{AFB4}";
print $char;  # Output: 꾴

PHP:

$char = "\x{AFB4}";
echo $char;  // Output: 꾴

Ruby:

char = "\u{AFB4}"
puts char  # Output: 꾴

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44980;</p>  <!-- Display: 꾴 -->

HTML Hexadecimal:

<p>HTML hex: &#xAFB4;</p>  <!-- Display: 꾴 -->

URL Encoding:

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

Encodings

MD5:

0c8488056e1e2567fe8de6fa9654ff4d

SHA1:

52b6eace8d7187e7e15a68a04c82de0789d12d37

Base64:

6r60