Unicode Finder

"꿭" U+AFED(HANGUL SYLLABLE GGWEOT)

U+AFED
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GGWEOT

Programming

C
\uAFED
JavaScript
\uAFED
Java
\uAFED
Json
\uAFED
Python
\uAFED
Perl
\x{AFED}
PHP
\x{AFED}
Ruby
\u{AFED}
Rust
\u{AFED}
Go
\uAFED

Web

CSS
\00AFED
HtmlDecimal
꿭
HtmlHexadecimal
꿭
Url
%EA%BF%AD

Code

MD5
09bfba585e2b3e94b2b35c22c11ac62b
Sha1
ea3646307b20fec4493f5d542f78cacbe7837df7
Base64
6r+t

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAFED';
console.log(char);  // Output: 꿭

Java:

char c = '\uAFED';
System.out.println(c);  // Output: 꿭

JSON:

{"text": "\uAFED"}  // Value: 꿭

Python:

char = '\uAFED'
print(char)  # Output: 꿭

Perl:

my $char = "\x{AFED}";
print $char;  # Output: 꿭

PHP:

$char = "\x{AFED}";
echo $char;  // Output: 꿭

Ruby:

char = "\u{AFED}"
puts char  # Output: 꿭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45037;</p>  <!-- Display: 꿭 -->

HTML Hexadecimal:

<p>HTML hex: &#xAFED;</p>  <!-- Display: 꿭 -->

URL Encoding:

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

Encodings

MD5:

09bfba585e2b3e94b2b35c22c11ac62b

SHA1:

ea3646307b20fec4493f5d542f78cacbe7837df7

Base64:

6r+t