Unicode Finder

"괍" U+AD0D(HANGUL SYLLABLE GWAB)

U+AD0D
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GWAB

Programming

C
\uAD0D
JavaScript
\uAD0D
Java
\uAD0D
Json
\uAD0D
Python
\uAD0D
Perl
\x{AD0D}
PHP
\x{AD0D}
Ruby
\u{AD0D}
Rust
\u{AD0D}
Go
\uAD0D

Web

CSS
\00AD0D
HtmlDecimal
괍
HtmlHexadecimal
괍
Url
%EA%B4%8D

Code

MD5
d013785a6bb59a8166c6d612dd6ebd67
Sha1
3fd43026f9e5d9f6a6216a2c6f8cf52cadb516ae
Base64
6rSN

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAD0D';
console.log(char);  // Output: 괍

Java:

char c = '\uAD0D';
System.out.println(c);  // Output: 괍

JSON:

{"text": "\uAD0D"}  // Value: 괍

Python:

char = '\uAD0D'
print(char)  # Output: 괍

Perl:

my $char = "\x{AD0D}";
print $char;  # Output: 괍

PHP:

$char = "\x{AD0D}";
echo $char;  // Output: 괍

Ruby:

char = "\u{AD0D}"
puts char  # Output: 괍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44301;</p>  <!-- Display: 괍 -->

HTML Hexadecimal:

<p>HTML hex: &#xAD0D;</p>  <!-- Display: 괍 -->

URL Encoding:

// 괍 URL encoding
https://unicodefinder.com/search.php?query=%EA%B4%8D

Encodings

MD5:

d013785a6bb59a8166c6d612dd6ebd67

SHA1:

3fd43026f9e5d9f6a6216a2c6f8cf52cadb516ae

Base64:

6rSN