Unicode Finder

"뙏" U+B64F(HANGUL SYLLABLE DDWAED)

U+B64F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDWAED

Programming

C
\uB64F
JavaScript
\uB64F
Java
\uB64F
Json
\uB64F
Python
\uB64F
Perl
\x{B64F}
PHP
\x{B64F}
Ruby
\u{B64F}
Rust
\u{B64F}
Go
\uB64F

Web

CSS
\00B64F
HtmlDecimal
뙏
HtmlHexadecimal
뙏
Url
%EB%99%8F

Code

MD5
21eb3e49fe7b128fc5e3337d36c74ebd
Sha1
92f08e5b8cb0516565074d65e2b8974a9c6c4b6d
Base64
65mP

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB64F';
console.log(char);  // Output: 뙏

Java:

char c = '\uB64F';
System.out.println(c);  // Output: 뙏

JSON:

{"text": "\uB64F"}  // Value: 뙏

Python:

char = '\uB64F'
print(char)  # Output: 뙏

Perl:

my $char = "\x{B64F}";
print $char;  # Output: 뙏

PHP:

$char = "\x{B64F}";
echo $char;  // Output: 뙏

Ruby:

char = "\u{B64F}"
puts char  # Output: 뙏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46671;</p>  <!-- Display: 뙏 -->

HTML Hexadecimal:

<p>HTML hex: &#xB64F;</p>  <!-- Display: 뙏 -->

URL Encoding:

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

Encodings

MD5:

21eb3e49fe7b128fc5e3337d36c74ebd

SHA1:

92f08e5b8cb0516565074d65e2b8974a9c6c4b6d

Base64:

65mP