Unicode Finder

"듭" U+B4ED(HANGUL SYLLABLE DEUB)

U+B4ED
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DEUB

Programming

C
\uB4ED
JavaScript
\uB4ED
Java
\uB4ED
Json
\uB4ED
Python
\uB4ED
Perl
\x{B4ED}
PHP
\x{B4ED}
Ruby
\u{B4ED}
Rust
\u{B4ED}
Go
\uB4ED

Web

CSS
\00B4ED
HtmlDecimal
듭
HtmlHexadecimal
듭
Url
%EB%93%AD

Code

MD5
6b46d8fdb82f935fff6b7060573eedd6
Sha1
07f36ba4d9ff0ec771aa3ed4c6164eb4729a1859
Base64
65Ot

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB4ED';
console.log(char);  // Output: 듭

Java:

char c = '\uB4ED';
System.out.println(c);  // Output: 듭

JSON:

{"text": "\uB4ED"}  // Value: 듭

Python:

char = '\uB4ED'
print(char)  # Output: 듭

Perl:

my $char = "\x{B4ED}";
print $char;  # Output: 듭

PHP:

$char = "\x{B4ED}";
echo $char;  // Output: 듭

Ruby:

char = "\u{B4ED}"
puts char  # Output: 듭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46317;</p>  <!-- Display: 듭 -->

HTML Hexadecimal:

<p>HTML hex: &#xB4ED;</p>  <!-- Display: 듭 -->

URL Encoding:

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

Encodings

MD5:

6b46d8fdb82f935fff6b7060573eedd6

SHA1:

07f36ba4d9ff0ec771aa3ed4c6164eb4729a1859

Base64:

65Ot