Unicode Finder

"훬" U+D6EC(HANGUL SYLLABLE HWEOLS)

U+D6EC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE HWEOLS

Programming

C
\uD6EC
JavaScript
\uD6EC
Java
\uD6EC
Json
\uD6EC
Python
\uD6EC
Perl
\x{D6EC}
PHP
\x{D6EC}
Ruby
\u{D6EC}
Rust
\u{D6EC}
Go
\uD6EC

Web

CSS
\00D6EC
HtmlDecimal
훬
HtmlHexadecimal
훬
Url
%ED%9B%AC

Code

MD5
984cda183e704557b6503833b7237281
Sha1
d429e067c39071d3a7427d6ef3ac5fa4be16c2a3
Base64
7Zus

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD6EC';
console.log(char);  // Output: 훬

Java:

char c = '\uD6EC';
System.out.println(c);  // Output: 훬

JSON:

{"text": "\uD6EC"}  // Value: 훬

Python:

char = '\uD6EC'
print(char)  # Output: 훬

Perl:

my $char = "\x{D6EC}";
print $char;  # Output: 훬

PHP:

$char = "\x{D6EC}";
echo $char;  // Output: 훬

Ruby:

char = "\u{D6EC}"
puts char  # Output: 훬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#55020;</p>  <!-- Display: 훬 -->

HTML Hexadecimal:

<p>HTML hex: &#xD6EC;</p>  <!-- Display: 훬 -->

URL Encoding:

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

Encodings

MD5:

984cda183e704557b6503833b7237281

SHA1:

d429e067c39071d3a7427d6ef3ac5fa4be16c2a3

Base64:

7Zus