Unicode Finder

"귾" U+ADFE(HANGUL SYLLABLE GEUNH)

U+ADFE
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GEUNH

Programming

C
\uADFE
JavaScript
\uADFE
Java
\uADFE
Json
\uADFE
Python
\uADFE
Perl
\x{ADFE}
PHP
\x{ADFE}
Ruby
\u{ADFE}
Rust
\u{ADFE}
Go
\uADFE

Web

CSS
\00ADFE
HtmlDecimal
귾
HtmlHexadecimal
귾
Url
%EA%B7%BE

Code

MD5
d85ecc8a536051f262ea3dab7f03d5c8
Sha1
af9ee441f94c01ea98960827b3874286c7212de5
Base64
6re+

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uADFE';
console.log(char);  // Output: 귾

Java:

char c = '\uADFE';
System.out.println(c);  // Output: 귾

JSON:

{"text": "\uADFE"}  // Value: 귾

Python:

char = '\uADFE'
print(char)  # Output: 귾

Perl:

my $char = "\x{ADFE}";
print $char;  # Output: 귾

PHP:

$char = "\x{ADFE}";
echo $char;  // Output: 귾

Ruby:

char = "\u{ADFE}"
puts char  # Output: 귾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44542;</p>  <!-- Display: 귾 -->

HTML Hexadecimal:

<p>HTML hex: &#xADFE;</p>  <!-- Display: 귾 -->

URL Encoding:

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

Encodings

MD5:

d85ecc8a536051f262ea3dab7f03d5c8

SHA1:

af9ee441f94c01ea98960827b3874286c7212de5

Base64:

6re+