Unicode Finder

"귒" U+ADD2(HANGUL SYLLABLE GWIBS)

U+ADD2
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GWIBS

Programming

C
\uADD2
JavaScript
\uADD2
Java
\uADD2
Json
\uADD2
Python
\uADD2
Perl
\x{ADD2}
PHP
\x{ADD2}
Ruby
\u{ADD2}
Rust
\u{ADD2}
Go
\uADD2

Web

CSS
\00ADD2
HtmlDecimal
귒
HtmlHexadecimal
귒
Url
%EA%B7%92

Code

MD5
77a0191c1bdb907a10d08b0f3ca81a22
Sha1
79e325dccf667be2e332e8d69d51b4cabc14885b
Base64
6reS

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uADD2';
console.log(char);  // Output: 귒

Java:

char c = '\uADD2';
System.out.println(c);  // Output: 귒

JSON:

{"text": "\uADD2"}  // Value: 귒

Python:

char = '\uADD2'
print(char)  # Output: 귒

Perl:

my $char = "\x{ADD2}";
print $char;  # Output: 귒

PHP:

$char = "\x{ADD2}";
echo $char;  // Output: 귒

Ruby:

char = "\u{ADD2}"
puts char  # Output: 귒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44498;</p>  <!-- Display: 귒 -->

HTML Hexadecimal:

<p>HTML hex: &#xADD2;</p>  <!-- Display: 귒 -->

URL Encoding:

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

Encodings

MD5:

77a0191c1bdb907a10d08b0f3ca81a22

SHA1:

79e325dccf667be2e332e8d69d51b4cabc14885b

Base64:

6reS