Unicode Finder

"듣" U+B4E3(HANGUL SYLLABLE DEUD)

U+B4E3
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DEUD

Programming

C
\uB4E3
JavaScript
\uB4E3
Java
\uB4E3
Json
\uB4E3
Python
\uB4E3
Perl
\x{B4E3}
PHP
\x{B4E3}
Ruby
\u{B4E3}
Rust
\u{B4E3}
Go
\uB4E3

Web

CSS
\00B4E3
HtmlDecimal
듣
HtmlHexadecimal
듣
Url
%EB%93%A3

Code

MD5
73e272c49007095d75cf22dd60effd34
Sha1
b327d7e7cadf7024c66261cf7548d711d74d30f5
Base64
65Oj

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB4E3';
console.log(char);  // Output: 듣

Java:

char c = '\uB4E3';
System.out.println(c);  // Output: 듣

JSON:

{"text": "\uB4E3"}  // Value: 듣

Python:

char = '\uB4E3'
print(char)  # Output: 듣

Perl:

my $char = "\x{B4E3}";
print $char;  # Output: 듣

PHP:

$char = "\x{B4E3}";
echo $char;  // Output: 듣

Ruby:

char = "\u{B4E3}"
puts char  # Output: 듣

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46307;</p>  <!-- Display: 듣 -->

HTML Hexadecimal:

<p>HTML hex: &#xB4E3;</p>  <!-- Display: 듣 -->

URL Encoding:

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

Encodings

MD5:

73e272c49007095d75cf22dd60effd34

SHA1:

b327d7e7cadf7024c66261cf7548d711d74d30f5

Base64:

65Oj