Unicode Finder

"귽" U+ADFD(HANGUL SYLLABLE GEUNJ)

U+ADFD
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GEUNJ

Programming

C
\uADFD
JavaScript
\uADFD
Java
\uADFD
Json
\uADFD
Python
\uADFD
Perl
\x{ADFD}
PHP
\x{ADFD}
Ruby
\u{ADFD}
Rust
\u{ADFD}
Go
\uADFD

Web

CSS
\00ADFD
HtmlDecimal
귽
HtmlHexadecimal
귽
Url
%EA%B7%BD

Code

MD5
c0662faba7aca70dc26635473eea5f0c
Sha1
d82d95160e67222550bcd022d8eb86e32ea6d9a4
Base64
6re9

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uADFD';
console.log(char);  // Output: 귽

Java:

char c = '\uADFD';
System.out.println(c);  // Output: 귽

JSON:

{"text": "\uADFD"}  // Value: 귽

Python:

char = '\uADFD'
print(char)  # Output: 귽

Perl:

my $char = "\x{ADFD}";
print $char;  # Output: 귽

PHP:

$char = "\x{ADFD}";
echo $char;  // Output: 귽

Ruby:

char = "\u{ADFD}"
puts char  # Output: 귽

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44541;</p>  <!-- Display: 귽 -->

HTML Hexadecimal:

<p>HTML hex: &#xADFD;</p>  <!-- Display: 귽 -->

URL Encoding:

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

Encodings

MD5:

c0662faba7aca70dc26635473eea5f0c

SHA1:

d82d95160e67222550bcd022d8eb86e32ea6d9a4

Base64:

6re9