Unicode Finder

"듆" U+B4C6(HANGUL SYLLABLE DYUNH)

U+B4C6
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DYUNH

Programming

C
\uB4C6
JavaScript
\uB4C6
Java
\uB4C6
Json
\uB4C6
Python
\uB4C6
Perl
\x{B4C6}
PHP
\x{B4C6}
Ruby
\u{B4C6}
Rust
\u{B4C6}
Go
\uB4C6

Web

CSS
\00B4C6
HtmlDecimal
듆
HtmlHexadecimal
듆
Url
%EB%93%86

Code

MD5
e07b2f19f83f6d3367bbe68713715fad
Sha1
cedfc2da642f70d7b01c9dd1648766bc56df763f
Base64
65OG

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB4C6';
console.log(char);  // Output: 듆

Java:

char c = '\uB4C6';
System.out.println(c);  // Output: 듆

JSON:

{"text": "\uB4C6"}  // Value: 듆

Python:

char = '\uB4C6'
print(char)  # Output: 듆

Perl:

my $char = "\x{B4C6}";
print $char;  # Output: 듆

PHP:

$char = "\x{B4C6}";
echo $char;  // Output: 듆

Ruby:

char = "\u{B4C6}"
puts char  # Output: 듆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46278;</p>  <!-- Display: 듆 -->

HTML Hexadecimal:

<p>HTML hex: &#xB4C6;</p>  <!-- Display: 듆 -->

URL Encoding:

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

Encodings

MD5:

e07b2f19f83f6d3367bbe68713715fad

SHA1:

cedfc2da642f70d7b01c9dd1648766bc56df763f

Base64:

65OG