Unicode Finder

"훋" U+D6CB(HANGUL SYLLABLE HUD)

U+D6CB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE HUD

Programming

C
\uD6CB
JavaScript
\uD6CB
Java
\uD6CB
Json
\uD6CB
Python
\uD6CB
Perl
\x{D6CB}
PHP
\x{D6CB}
Ruby
\u{D6CB}
Rust
\u{D6CB}
Go
\uD6CB

Web

CSS
\00D6CB
HtmlDecimal
훋
HtmlHexadecimal
훋
Url
%ED%9B%8B

Code

MD5
0d1e5f79df8e86311bc007f8f25bb070
Sha1
e9cc06c587d704f30345f15954a07f479f5ec24c
Base64
7ZuL

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD6CB';
console.log(char);  // Output: 훋

Java:

char c = '\uD6CB';
System.out.println(c);  // Output: 훋

JSON:

{"text": "\uD6CB"}  // Value: 훋

Python:

char = '\uD6CB'
print(char)  # Output: 훋

Perl:

my $char = "\x{D6CB}";
print $char;  # Output: 훋

PHP:

$char = "\x{D6CB}";
echo $char;  // Output: 훋

Ruby:

char = "\u{D6CB}"
puts char  # Output: 훋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54987;</p>  <!-- Display: 훋 -->

HTML Hexadecimal:

<p>HTML hex: &#xD6CB;</p>  <!-- Display: 훋 -->

URL Encoding:

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

Encodings

MD5:

0d1e5f79df8e86311bc007f8f25bb070

SHA1:

e9cc06c587d704f30345f15954a07f479f5ec24c

Base64:

7ZuL