Unicode Finder

"꽥" U+AF65(HANGUL SYLLABLE GGWAEG)

U+AF65
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GGWAEG

Programming

C
\uAF65
JavaScript
\uAF65
Java
\uAF65
Json
\uAF65
Python
\uAF65
Perl
\x{AF65}
PHP
\x{AF65}
Ruby
\u{AF65}
Rust
\u{AF65}
Go
\uAF65

Web

CSS
\00AF65
HtmlDecimal
꽥
HtmlHexadecimal
꽥
Url
%EA%BD%A5

Code

MD5
ebef205a8205fdf9cb6b817303c03829
Sha1
769b2f9369cddd3d932ec0019ba642d6e1e7760d
Base64
6r2l

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAF65';
console.log(char);  // Output: 꽥

Java:

char c = '\uAF65';
System.out.println(c);  // Output: 꽥

JSON:

{"text": "\uAF65"}  // Value: 꽥

Python:

char = '\uAF65'
print(char)  # Output: 꽥

Perl:

my $char = "\x{AF65}";
print $char;  # Output: 꽥

PHP:

$char = "\x{AF65}";
echo $char;  // Output: 꽥

Ruby:

char = "\u{AF65}"
puts char  # Output: 꽥

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44901;</p>  <!-- Display: 꽥 -->

HTML Hexadecimal:

<p>HTML hex: &#xAF65;</p>  <!-- Display: 꽥 -->

URL Encoding:

// 꽥 URL encoding
https://unicodefinder.com/search.php?query=%EA%BD%A5

Encodings

MD5:

ebef205a8205fdf9cb6b817303c03829

SHA1:

769b2f9369cddd3d932ec0019ba642d6e1e7760d

Base64:

6r2l