Unicode Finder

"꾪" U+AFAA(HANGUL SYLLABLE GGYOLP)

U+AFAA
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GGYOLP

Programming

C
\uAFAA
JavaScript
\uAFAA
Java
\uAFAA
Json
\uAFAA
Python
\uAFAA
Perl
\x{AFAA}
PHP
\x{AFAA}
Ruby
\u{AFAA}
Rust
\u{AFAA}
Go
\uAFAA

Web

CSS
\00AFAA
HtmlDecimal
꾪
HtmlHexadecimal
꾪
Url
%EA%BE%AA

Code

MD5
33c7e7f4cc7fd2aec9f1c276e337c594
Sha1
75b8b5d8ee99d2591e59012431acd82c62a86b87
Base64
6r6q

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAFAA';
console.log(char);  // Output: 꾪

Java:

char c = '\uAFAA';
System.out.println(c);  // Output: 꾪

JSON:

{"text": "\uAFAA"}  // Value: 꾪

Python:

char = '\uAFAA'
print(char)  # Output: 꾪

Perl:

my $char = "\x{AFAA}";
print $char;  # Output: 꾪

PHP:

$char = "\x{AFAA}";
echo $char;  // Output: 꾪

Ruby:

char = "\u{AFAA}"
puts char  # Output: 꾪

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44970;</p>  <!-- Display: 꾪 -->

HTML Hexadecimal:

<p>HTML hex: &#xAFAA;</p>  <!-- Display: 꾪 -->

URL Encoding:

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

Encodings

MD5:

33c7e7f4cc7fd2aec9f1c276e337c594

SHA1:

75b8b5d8ee99d2591e59012431acd82c62a86b87

Base64:

6r6q