Unicode Finder

"듨" U+B4E8(HANGUL SYLLABLE DEULS)

U+B4E8
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DEULS

Programming

C
\uB4E8
JavaScript
\uB4E8
Java
\uB4E8
Json
\uB4E8
Python
\uB4E8
Perl
\x{B4E8}
PHP
\x{B4E8}
Ruby
\u{B4E8}
Rust
\u{B4E8}
Go
\uB4E8

Web

CSS
\00B4E8
HtmlDecimal
듨
HtmlHexadecimal
듨
Url
%EB%93%A8

Code

MD5
5ee94126a31684427f1ce76ed693d1d0
Sha1
92226a32d08677a53f09ffcfab46ff124ad3d82f
Base64
65Oo

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB4E8';
console.log(char);  // Output: 듨

Java:

char c = '\uB4E8';
System.out.println(c);  // Output: 듨

JSON:

{"text": "\uB4E8"}  // Value: 듨

Python:

char = '\uB4E8'
print(char)  # Output: 듨

Perl:

my $char = "\x{B4E8}";
print $char;  # Output: 듨

PHP:

$char = "\x{B4E8}";
echo $char;  // Output: 듨

Ruby:

char = "\u{B4E8}"
puts char  # Output: 듨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46312;</p>  <!-- Display: 듨 -->

HTML Hexadecimal:

<p>HTML hex: &#xB4E8;</p>  <!-- Display: 듨 -->

URL Encoding:

// 듨 URL encoding
https://unicodefinder.com/search.php?query=%EB%93%A8

Encodings

MD5:

5ee94126a31684427f1ce76ed693d1d0

SHA1:

92226a32d08677a53f09ffcfab46ff124ad3d82f

Base64:

65Oo