Unicode Finder

"듀" U+B4C0(HANGUL SYLLABLE DYU)

U+B4C0
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DYU

Programming

C
\uB4C0
JavaScript
\uB4C0
Java
\uB4C0
Json
\uB4C0
Python
\uB4C0
Perl
\x{B4C0}
PHP
\x{B4C0}
Ruby
\u{B4C0}
Rust
\u{B4C0}
Go
\uB4C0

Web

CSS
\00B4C0
HtmlDecimal
듀
HtmlHexadecimal
듀
Url
%EB%93%80

Code

MD5
12dc31c7fff9d902e1b7a8968e72d303
Sha1
f6be9859637dd65326afb90795a02eb51fccff85
Base64
65OA

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB4C0';
console.log(char);  // Output: 듀

Java:

char c = '\uB4C0';
System.out.println(c);  // Output: 듀

JSON:

{"text": "\uB4C0"}  // Value: 듀

Python:

char = '\uB4C0'
print(char)  # Output: 듀

Perl:

my $char = "\x{B4C0}";
print $char;  # Output: 듀

PHP:

$char = "\x{B4C0}";
echo $char;  // Output: 듀

Ruby:

char = "\u{B4C0}"
puts char  # Output: 듀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46272;</p>  <!-- Display: 듀 -->

HTML Hexadecimal:

<p>HTML hex: &#xB4C0;</p>  <!-- Display: 듀 -->

URL Encoding:

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

Encodings

MD5:

12dc31c7fff9d902e1b7a8968e72d303

SHA1:

f6be9859637dd65326afb90795a02eb51fccff85

Base64:

65OA