Unicode Finder

"듇" U+B4C7(HANGUL SYLLABLE DYUD)

U+B4C7
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DYUD

Programming

C
\uB4C7
JavaScript
\uB4C7
Java
\uB4C7
Json
\uB4C7
Python
\uB4C7
Perl
\x{B4C7}
PHP
\x{B4C7}
Ruby
\u{B4C7}
Rust
\u{B4C7}
Go
\uB4C7

Web

CSS
\00B4C7
HtmlDecimal
듇
HtmlHexadecimal
듇
Url
%EB%93%87

Code

MD5
c286d49301ba0ef550ef23e31301c918
Sha1
128c12401ac74f136288e97689fd7c282163a90e
Base64
65OH

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB4C7';
console.log(char);  // Output: 듇

Java:

char c = '\uB4C7';
System.out.println(c);  // Output: 듇

JSON:

{"text": "\uB4C7"}  // Value: 듇

Python:

char = '\uB4C7'
print(char)  # Output: 듇

Perl:

my $char = "\x{B4C7}";
print $char;  # Output: 듇

PHP:

$char = "\x{B4C7}";
echo $char;  // Output: 듇

Ruby:

char = "\u{B4C7}"
puts char  # Output: 듇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46279;</p>  <!-- Display: 듇 -->

HTML Hexadecimal:

<p>HTML hex: &#xB4C7;</p>  <!-- Display: 듇 -->

URL Encoding:

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

Encodings

MD5:

c286d49301ba0ef550ef23e31301c918

SHA1:

128c12401ac74f136288e97689fd7c282163a90e

Base64:

65OH