Unicode Finder

"꿯" U+AFEF(HANGUL SYLLABLE GGWEOH)

U+AFEF
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GGWEOH

Programming

C
\uAFEF
JavaScript
\uAFEF
Java
\uAFEF
Json
\uAFEF
Python
\uAFEF
Perl
\x{AFEF}
PHP
\x{AFEF}
Ruby
\u{AFEF}
Rust
\u{AFEF}
Go
\uAFEF

Web

CSS
\00AFEF
HtmlDecimal
꿯
HtmlHexadecimal
꿯
Url
%EA%BF%AF

Code

MD5
f46d0b0560f29318930e6d214eee958d
Sha1
474f7623b02ac6834af89d4be0c90af7c4cf0886
Base64
6r+v

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAFEF';
console.log(char);  // Output: 꿯

Java:

char c = '\uAFEF';
System.out.println(c);  // Output: 꿯

JSON:

{"text": "\uAFEF"}  // Value: 꿯

Python:

char = '\uAFEF'
print(char)  # Output: 꿯

Perl:

my $char = "\x{AFEF}";
print $char;  # Output: 꿯

PHP:

$char = "\x{AFEF}";
echo $char;  // Output: 꿯

Ruby:

char = "\u{AFEF}"
puts char  # Output: 꿯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45039;</p>  <!-- Display: 꿯 -->

HTML Hexadecimal:

<p>HTML hex: &#xAFEF;</p>  <!-- Display: 꿯 -->

URL Encoding:

// 꿯 URL encoding
https://unicodefinder.com/search.php?query=%EA%BF%AF

Encodings

MD5:

f46d0b0560f29318930e6d214eee958d

SHA1:

474f7623b02ac6834af89d4be0c90af7c4cf0886

Base64:

6r+v