Unicode Finder

"꿜" U+AFDC(HANGUL SYLLABLE GGWEOL)

U+AFDC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GGWEOL

Programming

C
\uAFDC
JavaScript
\uAFDC
Java
\uAFDC
Json
\uAFDC
Python
\uAFDC
Perl
\x{AFDC}
PHP
\x{AFDC}
Ruby
\u{AFDC}
Rust
\u{AFDC}
Go
\uAFDC

Web

CSS
\00AFDC
HtmlDecimal
꿜
HtmlHexadecimal
꿜
Url
%EA%BF%9C

Code

MD5
b185dc7a5d574adec39dba94d6903a6f
Sha1
1cbf4e42c323b528a5f79e655ca69a00076c918b
Base64
6r+c

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAFDC';
console.log(char);  // Output: 꿜

Java:

char c = '\uAFDC';
System.out.println(c);  // Output: 꿜

JSON:

{"text": "\uAFDC"}  // Value: 꿜

Python:

char = '\uAFDC'
print(char)  # Output: 꿜

Perl:

my $char = "\x{AFDC}";
print $char;  # Output: 꿜

PHP:

$char = "\x{AFDC}";
echo $char;  // Output: 꿜

Ruby:

char = "\u{AFDC}"
puts char  # Output: 꿜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45020;</p>  <!-- Display: 꿜 -->

HTML Hexadecimal:

<p>HTML hex: &#xAFDC;</p>  <!-- Display: 꿜 -->

URL Encoding:

// 꿜 URL encoding
https://unicodefinder.com/search.php?query=%EA%BF%9C

Encodings

MD5:

b185dc7a5d574adec39dba94d6903a6f

SHA1:

1cbf4e42c323b528a5f79e655ca69a00076c918b

Base64:

6r+c