Unicode Finder

"홯" U+D66F(HANGUL SYLLABLE HWAH)

U+D66F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE HWAH

Programming

C
\uD66F
JavaScript
\uD66F
Java
\uD66F
Json
\uD66F
Python
\uD66F
Perl
\x{D66F}
PHP
\x{D66F}
Ruby
\u{D66F}
Rust
\u{D66F}
Go
\uD66F

Web

CSS
\00D66F
HtmlDecimal
홯
HtmlHexadecimal
홯
Url
%ED%99%AF

Code

MD5
4a67dd2ca959375e6990ab64b4492d31
Sha1
b9f66500d4ba35bf0e6e19943e43452cd15eeafd
Base64
7Zmv

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD66F';
console.log(char);  // Output: 홯

Java:

char c = '\uD66F';
System.out.println(c);  // Output: 홯

JSON:

{"text": "\uD66F"}  // Value: 홯

Python:

char = '\uD66F'
print(char)  # Output: 홯

Perl:

my $char = "\x{D66F}";
print $char;  # Output: 홯

PHP:

$char = "\x{D66F}";
echo $char;  // Output: 홯

Ruby:

char = "\u{D66F}"
puts char  # Output: 홯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54895;</p>  <!-- Display: 홯 -->

HTML Hexadecimal:

<p>HTML hex: &#xD66F;</p>  <!-- Display: 홯 -->

URL Encoding:

// 홯 URL encoding
https://unicodefinder.com/search.php?query=%ED%99%AF

Encodings

MD5:

4a67dd2ca959375e6990ab64b4492d31

SHA1:

b9f66500d4ba35bf0e6e19943e43452cd15eeafd

Base64:

7Zmv