Unicode Finder

"귚" U+ADDA(HANGUL SYLLABLE GWIP)

U+ADDA
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GWIP

Programming

C
\uADDA
JavaScript
\uADDA
Java
\uADDA
Json
\uADDA
Python
\uADDA
Perl
\x{ADDA}
PHP
\x{ADDA}
Ruby
\u{ADDA}
Rust
\u{ADDA}
Go
\uADDA

Web

CSS
\00ADDA
HtmlDecimal
귚
HtmlHexadecimal
귚
Url
%EA%B7%9A

Code

MD5
358e6e636950298d1f3e63978442a5f5
Sha1
0150f6b5b8cb1d509804adef0408ee7bd3db78ff
Base64
6rea

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uADDA';
console.log(char);  // Output: 귚

Java:

char c = '\uADDA';
System.out.println(c);  // Output: 귚

JSON:

{"text": "\uADDA"}  // Value: 귚

Python:

char = '\uADDA'
print(char)  # Output: 귚

Perl:

my $char = "\x{ADDA}";
print $char;  # Output: 귚

PHP:

$char = "\x{ADDA}";
echo $char;  // Output: 귚

Ruby:

char = "\u{ADDA}"
puts char  # Output: 귚

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44506;</p>  <!-- Display: 귚 -->

HTML Hexadecimal:

<p>HTML hex: &#xADDA;</p>  <!-- Display: 귚 -->

URL Encoding:

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

Encodings

MD5:

358e6e636950298d1f3e63978442a5f5

SHA1:

0150f6b5b8cb1d509804adef0408ee7bd3db78ff

Base64:

6rea