Unicode Finder

"듥" U+B4E5(HANGUL SYLLABLE DEULG)

U+B4E5
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DEULG

Programming

C
\uB4E5
JavaScript
\uB4E5
Java
\uB4E5
Json
\uB4E5
Python
\uB4E5
Perl
\x{B4E5}
PHP
\x{B4E5}
Ruby
\u{B4E5}
Rust
\u{B4E5}
Go
\uB4E5

Web

CSS
\00B4E5
HtmlDecimal
듥
HtmlHexadecimal
듥
Url
%EB%93%A5

Code

MD5
4492d0dd19b006e6289f534e6ebe12b0
Sha1
8da360851e41b59cf77c3beb85579d97e9ad0cb3
Base64
65Ol

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB4E5';
console.log(char);  // Output: 듥

Java:

char c = '\uB4E5';
System.out.println(c);  // Output: 듥

JSON:

{"text": "\uB4E5"}  // Value: 듥

Python:

char = '\uB4E5'
print(char)  # Output: 듥

Perl:

my $char = "\x{B4E5}";
print $char;  # Output: 듥

PHP:

$char = "\x{B4E5}";
echo $char;  // Output: 듥

Ruby:

char = "\u{B4E5}"
puts char  # Output: 듥

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46309;</p>  <!-- Display: 듥 -->

HTML Hexadecimal:

<p>HTML hex: &#xB4E5;</p>  <!-- Display: 듥 -->

URL Encoding:

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

Encodings

MD5:

4492d0dd19b006e6289f534e6ebe12b0

SHA1:

8da360851e41b59cf77c3beb85579d97e9ad0cb3

Base64:

65Ol