Unicode Finder

"국" U+AD6D(HANGUL SYLLABLE GUG)

U+AD6D
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GUG

Programming

C
\uAD6D
JavaScript
\uAD6D
Java
\uAD6D
Json
\uAD6D
Python
\uAD6D
Perl
\x{AD6D}
PHP
\x{AD6D}
Ruby
\u{AD6D}
Rust
\u{AD6D}
Go
\uAD6D

Web

CSS
\00AD6D
HtmlDecimal
국
HtmlHexadecimal
국
Url
%EA%B5%AD

Code

MD5
e718ce8ae5b228736d0967683f8dd3a1
Sha1
c75502f890f05c284cd62e036a5a375c09af742e
Base64
6rWt

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAD6D';
console.log(char);  // Output: 국

Java:

char c = '\uAD6D';
System.out.println(c);  // Output: 국

JSON:

{"text": "\uAD6D"}  // Value: 국

Python:

char = '\uAD6D'
print(char)  # Output: 국

Perl:

my $char = "\x{AD6D}";
print $char;  # Output: 국

PHP:

$char = "\x{AD6D}";
echo $char;  // Output: 국

Ruby:

char = "\u{AD6D}"
puts char  # Output: 국

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44397;</p>  <!-- Display: 국 -->

HTML Hexadecimal:

<p>HTML hex: &#xAD6D;</p>  <!-- Display: 국 -->

URL Encoding:

// 국 URL encoding
https://unicodefinder.com/search.php?query=%EA%B5%AD

Encodings

MD5:

e718ce8ae5b228736d0967683f8dd3a1

SHA1:

c75502f890f05c284cd62e036a5a375c09af742e

Base64:

6rWt