Unicode Finder

"햧" U+D5A7(HANGUL SYLLABLE HYAC)

U+D5A7
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE HYAC

Programming

C
\uD5A7
JavaScript
\uD5A7
Java
\uD5A7
Json
\uD5A7
Python
\uD5A7
Perl
\x{D5A7}
PHP
\x{D5A7}
Ruby
\u{D5A7}
Rust
\u{D5A7}
Go
\uD5A7

Web

CSS
\00D5A7
HtmlDecimal
햧
HtmlHexadecimal
햧
Url
%ED%96%A7

Code

MD5
2a91f311d499227077fba2fd068ae97a
Sha1
0241657202a8d6183924fc4669282c283b60933e
Base64
7Zan

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD5A7';
console.log(char);  // Output: 햧

Java:

char c = '\uD5A7';
System.out.println(c);  // Output: 햧

JSON:

{"text": "\uD5A7"}  // Value: 햧

Python:

char = '\uD5A7'
print(char)  # Output: 햧

Perl:

my $char = "\x{D5A7}";
print $char;  # Output: 햧

PHP:

$char = "\x{D5A7}";
echo $char;  // Output: 햧

Ruby:

char = "\u{D5A7}"
puts char  # Output: 햧

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54695;</p>  <!-- Display: 햧 -->

HTML Hexadecimal:

<p>HTML hex: &#xD5A7;</p>  <!-- Display: 햧 -->

URL Encoding:

// 햧 URL encoding
https://unicodefinder.com/search.php?query=%ED%96%A7

Encodings

MD5:

2a91f311d499227077fba2fd068ae97a

SHA1:

0241657202a8d6183924fc4669282c283b60933e

Base64:

7Zan