Unicode Finder

"뙎" U+B64E(HANGUL SYLLABLE DDWAENH)

U+B64E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDWAENH

Programming

C
\uB64E
JavaScript
\uB64E
Java
\uB64E
Json
\uB64E
Python
\uB64E
Perl
\x{B64E}
PHP
\x{B64E}
Ruby
\u{B64E}
Rust
\u{B64E}
Go
\uB64E

Web

CSS
\00B64E
HtmlDecimal
뙎
HtmlHexadecimal
뙎
Url
%EB%99%8E

Code

MD5
90ab91eaa00e2e4e3f3f5ab43944ed12
Sha1
a2f9ec8cbd064488e398c267337ebdd1c6c99e5a
Base64
65mO

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB64E';
console.log(char);  // Output: 뙎

Java:

char c = '\uB64E';
System.out.println(c);  // Output: 뙎

JSON:

{"text": "\uB64E"}  // Value: 뙎

Python:

char = '\uB64E'
print(char)  # Output: 뙎

Perl:

my $char = "\x{B64E}";
print $char;  # Output: 뙎

PHP:

$char = "\x{B64E}";
echo $char;  // Output: 뙎

Ruby:

char = "\u{B64E}"
puts char  # Output: 뙎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46670;</p>  <!-- Display: 뙎 -->

HTML Hexadecimal:

<p>HTML hex: &#xB64E;</p>  <!-- Display: 뙎 -->

URL Encoding:

// 뙎 URL encoding
https://unicodefinder.com/search.php?query=%EB%99%8E

Encodings

MD5:

90ab91eaa00e2e4e3f3f5ab43944ed12

SHA1:

a2f9ec8cbd064488e398c267337ebdd1c6c99e5a

Base64:

65mO