Unicode Finder

"뚊" U+B68A(HANGUL SYLLABLE DDYOLM)

U+B68A
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDYOLM

Programming

C
\uB68A
JavaScript
\uB68A
Java
\uB68A
Json
\uB68A
Python
\uB68A
Perl
\x{B68A}
PHP
\x{B68A}
Ruby
\u{B68A}
Rust
\u{B68A}
Go
\uB68A

Web

CSS
\00B68A
HtmlDecimal
뚊
HtmlHexadecimal
뚊
Url
%EB%9A%8A

Code

MD5
40fe347c9c1ac66ae3e436f00e912e11
Sha1
7aaf9b4eb18fcdfdc818d6640443d04883271ced
Base64
65qK

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB68A';
console.log(char);  // Output: 뚊

Java:

char c = '\uB68A';
System.out.println(c);  // Output: 뚊

JSON:

{"text": "\uB68A"}  // Value: 뚊

Python:

char = '\uB68A'
print(char)  # Output: 뚊

Perl:

my $char = "\x{B68A}";
print $char;  # Output: 뚊

PHP:

$char = "\x{B68A}";
echo $char;  // Output: 뚊

Ruby:

char = "\u{B68A}"
puts char  # Output: 뚊

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46730;</p>  <!-- Display: 뚊 -->

HTML Hexadecimal:

<p>HTML hex: &#xB68A;</p>  <!-- Display: 뚊 -->

URL Encoding:

// 뚊 URL encoding
https://unicodefinder.com/search.php?query=%EB%9A%8A

Encodings

MD5:

40fe347c9c1ac66ae3e436f00e912e11

SHA1:

7aaf9b4eb18fcdfdc818d6640443d04883271ced

Base64:

65qK