Unicode Finder

"듬" U+B4EC(HANGUL SYLLABLE DEUM)

U+B4EC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DEUM

Programming

C
\uB4EC
JavaScript
\uB4EC
Java
\uB4EC
Json
\uB4EC
Python
\uB4EC
Perl
\x{B4EC}
PHP
\x{B4EC}
Ruby
\u{B4EC}
Rust
\u{B4EC}
Go
\uB4EC

Web

CSS
\00B4EC
HtmlDecimal
듬
HtmlHexadecimal
듬
Url
%EB%93%AC

Code

MD5
cf352e958b5ecb47984c196cec932209
Sha1
30feb6de5908076d1758976cc32143ba1ac37586
Base64
65Os

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB4EC';
console.log(char);  // Output: 듬

Java:

char c = '\uB4EC';
System.out.println(c);  // Output: 듬

JSON:

{"text": "\uB4EC"}  // Value: 듬

Python:

char = '\uB4EC'
print(char)  # Output: 듬

Perl:

my $char = "\x{B4EC}";
print $char;  # Output: 듬

PHP:

$char = "\x{B4EC}";
echo $char;  // Output: 듬

Ruby:

char = "\u{B4EC}"
puts char  # Output: 듬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46316;</p>  <!-- Display: 듬 -->

HTML Hexadecimal:

<p>HTML hex: &#xB4EC;</p>  <!-- Display: 듬 -->

URL Encoding:

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

Encodings

MD5:

cf352e958b5ecb47984c196cec932209

SHA1:

30feb6de5908076d1758976cc32143ba1ac37586

Base64:

65Os