Unicode Finder

"훨" U+D6E8(HANGUL SYLLABLE HWEOL)

U+D6E8
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE HWEOL

Programming

C
\uD6E8
JavaScript
\uD6E8
Java
\uD6E8
Json
\uD6E8
Python
\uD6E8
Perl
\x{D6E8}
PHP
\x{D6E8}
Ruby
\u{D6E8}
Rust
\u{D6E8}
Go
\uD6E8

Web

CSS
\00D6E8
HtmlDecimal
훨
HtmlHexadecimal
훨
Url
%ED%9B%A8

Code

MD5
988d9203c237aaad554665e1c010d0e8
Sha1
69fbff5e411937c7039fabc82fd289a639aa34a1
Base64
7Zuo

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD6E8';
console.log(char);  // Output: 훨

Java:

char c = '\uD6E8';
System.out.println(c);  // Output: 훨

JSON:

{"text": "\uD6E8"}  // Value: 훨

Python:

char = '\uD6E8'
print(char)  # Output: 훨

Perl:

my $char = "\x{D6E8}";
print $char;  # Output: 훨

PHP:

$char = "\x{D6E8}";
echo $char;  // Output: 훨

Ruby:

char = "\u{D6E8}"
puts char  # Output: 훨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#55016;</p>  <!-- Display: 훨 -->

HTML Hexadecimal:

<p>HTML hex: &#xD6E8;</p>  <!-- Display: 훨 -->

URL Encoding:

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

Encodings

MD5:

988d9203c237aaad554665e1c010d0e8

SHA1:

69fbff5e411937c7039fabc82fd289a639aa34a1

Base64:

7Zuo