Unicode Finder

"귞" U+ADDE(HANGUL SYLLABLE GYUGG)

U+ADDE
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GYUGG

Programming

C
\uADDE
JavaScript
\uADDE
Java
\uADDE
Json
\uADDE
Python
\uADDE
Perl
\x{ADDE}
PHP
\x{ADDE}
Ruby
\u{ADDE}
Rust
\u{ADDE}
Go
\uADDE

Web

CSS
\00ADDE
HtmlDecimal
귞
HtmlHexadecimal
귞
Url
%EA%B7%9E

Code

MD5
e0b99df89694076374dee9e6c9acd1b3
Sha1
c674a75f53dc7556f33202c9adff86613ff5344b
Base64
6ree

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uADDE';
console.log(char);  // Output: 귞

Java:

char c = '\uADDE';
System.out.println(c);  // Output: 귞

JSON:

{"text": "\uADDE"}  // Value: 귞

Python:

char = '\uADDE'
print(char)  # Output: 귞

Perl:

my $char = "\x{ADDE}";
print $char;  # Output: 귞

PHP:

$char = "\x{ADDE}";
echo $char;  // Output: 귞

Ruby:

char = "\u{ADDE}"
puts char  # Output: 귞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44510;</p>  <!-- Display: 귞 -->

HTML Hexadecimal:

<p>HTML hex: &#xADDE;</p>  <!-- Display: 귞 -->

URL Encoding:

// 귞 URL encoding
https://unicodefinder.com/search.php?query=%EA%B7%9E

Encodings

MD5:

e0b99df89694076374dee9e6c9acd1b3

SHA1:

c674a75f53dc7556f33202c9adff86613ff5344b

Base64:

6ree