Unicode Finder

"뚎" U+B68E(HANGUL SYLLABLE DDYOLP)

U+B68E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDYOLP

Programming

C
\uB68E
JavaScript
\uB68E
Java
\uB68E
Json
\uB68E
Python
\uB68E
Perl
\x{B68E}
PHP
\x{B68E}
Ruby
\u{B68E}
Rust
\u{B68E}
Go
\uB68E

Web

CSS
\00B68E
HtmlDecimal
뚎
HtmlHexadecimal
뚎
Url
%EB%9A%8E

Code

MD5
41dda8d9a379a9c4950d8ce26e948d42
Sha1
4ff1de42ed8bdc6d07c3719e5c47f876b83ae4b5
Base64
65qO

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB68E';
console.log(char);  // Output: 뚎

Java:

char c = '\uB68E';
System.out.println(c);  // Output: 뚎

JSON:

{"text": "\uB68E"}  // Value: 뚎

Python:

char = '\uB68E'
print(char)  # Output: 뚎

Perl:

my $char = "\x{B68E}";
print $char;  # Output: 뚎

PHP:

$char = "\x{B68E}";
echo $char;  // Output: 뚎

Ruby:

char = "\u{B68E}"
puts char  # Output: 뚎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46734;</p>  <!-- Display: 뚎 -->

HTML Hexadecimal:

<p>HTML hex: &#xB68E;</p>  <!-- Display: 뚎 -->

URL Encoding:

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

Encodings

MD5:

41dda8d9a379a9c4950d8ce26e948d42

SHA1:

4ff1de42ed8bdc6d07c3719e5c47f876b83ae4b5

Base64:

65qO