Unicode Finder

"듶" U+B4F6(HANGUL SYLLABLE DEUP)

U+B4F6
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DEUP

Programming

C
\uB4F6
JavaScript
\uB4F6
Java
\uB4F6
Json
\uB4F6
Python
\uB4F6
Perl
\x{B4F6}
PHP
\x{B4F6}
Ruby
\u{B4F6}
Rust
\u{B4F6}
Go
\uB4F6

Web

CSS
\00B4F6
HtmlDecimal
듶
HtmlHexadecimal
듶
Url
%EB%93%B6

Code

MD5
a57ef0e515c959dc78eacd29c647f6a9
Sha1
a3634c4a0eafe9f27b50a739d77bfbe70b6137e3
Base64
65O2

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB4F6';
console.log(char);  // Output: 듶

Java:

char c = '\uB4F6';
System.out.println(c);  // Output: 듶

JSON:

{"text": "\uB4F6"}  // Value: 듶

Python:

char = '\uB4F6'
print(char)  # Output: 듶

Perl:

my $char = "\x{B4F6}";
print $char;  # Output: 듶

PHP:

$char = "\x{B4F6}";
echo $char;  // Output: 듶

Ruby:

char = "\u{B4F6}"
puts char  # Output: 듶

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46326;</p>  <!-- Display: 듶 -->

HTML Hexadecimal:

<p>HTML hex: &#xB4F6;</p>  <!-- Display: 듶 -->

URL Encoding:

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

Encodings

MD5:

a57ef0e515c959dc78eacd29c647f6a9

SHA1:

a3634c4a0eafe9f27b50a739d77bfbe70b6137e3

Base64:

65O2