Unicode Finder

"뙌" U+B64C(HANGUL SYLLABLE DDWAEN)

U+B64C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDWAEN

Programming

C
\uB64C
JavaScript
\uB64C
Java
\uB64C
Json
\uB64C
Python
\uB64C
Perl
\x{B64C}
PHP
\x{B64C}
Ruby
\u{B64C}
Rust
\u{B64C}
Go
\uB64C

Web

CSS
\00B64C
HtmlDecimal
뙌
HtmlHexadecimal
뙌
Url
%EB%99%8C

Code

MD5
62a103e3b04c67ab76d7d5f8422b4cd2
Sha1
29cb12ea90609ab90527507f2407510440552b81
Base64
65mM

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB64C';
console.log(char);  // Output: 뙌

Java:

char c = '\uB64C';
System.out.println(c);  // Output: 뙌

JSON:

{"text": "\uB64C"}  // Value: 뙌

Python:

char = '\uB64C'
print(char)  # Output: 뙌

Perl:

my $char = "\x{B64C}";
print $char;  # Output: 뙌

PHP:

$char = "\x{B64C}";
echo $char;  // Output: 뙌

Ruby:

char = "\u{B64C}"
puts char  # Output: 뙌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46668;</p>  <!-- Display: 뙌 -->

HTML Hexadecimal:

<p>HTML hex: &#xB64C;</p>  <!-- Display: 뙌 -->

URL Encoding:

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

Encodings

MD5:

62a103e3b04c67ab76d7d5f8422b4cd2

SHA1:

29cb12ea90609ab90527507f2407510440552b81

Base64:

65mM