Unicode Finder

"훍" U+D6CD(HANGUL SYLLABLE HULG)

U+D6CD
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE HULG

Programming

C
\uD6CD
JavaScript
\uD6CD
Java
\uD6CD
Json
\uD6CD
Python
\uD6CD
Perl
\x{D6CD}
PHP
\x{D6CD}
Ruby
\u{D6CD}
Rust
\u{D6CD}
Go
\uD6CD

Web

CSS
\00D6CD
HtmlDecimal
훍
HtmlHexadecimal
훍
Url
%ED%9B%8D

Code

MD5
84a5e0c47dc2cc24794f423ced805d38
Sha1
7adfd2c7b404ce38935769d63391095a69734c86
Base64
7ZuN

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD6CD';
console.log(char);  // Output: 훍

Java:

char c = '\uD6CD';
System.out.println(c);  // Output: 훍

JSON:

{"text": "\uD6CD"}  // Value: 훍

Python:

char = '\uD6CD'
print(char)  # Output: 훍

Perl:

my $char = "\x{D6CD}";
print $char;  # Output: 훍

PHP:

$char = "\x{D6CD}";
echo $char;  // Output: 훍

Ruby:

char = "\u{D6CD}"
puts char  # Output: 훍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54989;</p>  <!-- Display: 훍 -->

HTML Hexadecimal:

<p>HTML hex: &#xD6CD;</p>  <!-- Display: 훍 -->

URL Encoding:

// 훍 URL encoding
https://unicodefinder.com/search.php?query=%ED%9B%8D

Encodings

MD5:

84a5e0c47dc2cc24794f423ced805d38

SHA1:

7adfd2c7b404ce38935769d63391095a69734c86

Base64:

7ZuN