Unicode Finder

"듻" U+B4FB(HANGUL SYLLABLE DYIGS)

U+B4FB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DYIGS

Programming

C
\uB4FB
JavaScript
\uB4FB
Java
\uB4FB
Json
\uB4FB
Python
\uB4FB
Perl
\x{B4FB}
PHP
\x{B4FB}
Ruby
\u{B4FB}
Rust
\u{B4FB}
Go
\uB4FB

Web

CSS
\00B4FB
HtmlDecimal
듻
HtmlHexadecimal
듻
Url
%EB%93%BB

Code

MD5
4a15ff4cf18401391e76864cfd44db9a
Sha1
b01bee3872c9c5868d51b9dce1adab72ee1bda4d
Base64
65O7

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB4FB';
console.log(char);  // Output: 듻

Java:

char c = '\uB4FB';
System.out.println(c);  // Output: 듻

JSON:

{"text": "\uB4FB"}  // Value: 듻

Python:

char = '\uB4FB'
print(char)  # Output: 듻

Perl:

my $char = "\x{B4FB}";
print $char;  # Output: 듻

PHP:

$char = "\x{B4FB}";
echo $char;  // Output: 듻

Ruby:

char = "\u{B4FB}"
puts char  # Output: 듻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46331;</p>  <!-- Display: 듻 -->

HTML Hexadecimal:

<p>HTML hex: &#xB4FB;</p>  <!-- Display: 듻 -->

URL Encoding:

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

Encodings

MD5:

4a15ff4cf18401391e76864cfd44db9a

SHA1:

b01bee3872c9c5868d51b9dce1adab72ee1bda4d

Base64:

65O7