Unicode Finder

"뎻" U+B3BB(HANGUL SYLLABLE DYES)

U+B3BB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DYES

Programming

C
\uB3BB
JavaScript
\uB3BB
Java
\uB3BB
Json
\uB3BB
Python
\uB3BB
Perl
\x{B3BB}
PHP
\x{B3BB}
Ruby
\u{B3BB}
Rust
\u{B3BB}
Go
\uB3BB

Web

CSS
\00B3BB
HtmlDecimal
뎻
HtmlHexadecimal
뎻
Url
%EB%8E%BB

Code

MD5
8864bfb89f7a49e495b737c07b249509
Sha1
59321d8a6b7268014331e7951ec6ac2f3653929c
Base64
6467

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB3BB';
console.log(char);  // Output: 뎻

Java:

char c = '\uB3BB';
System.out.println(c);  // Output: 뎻

JSON:

{"text": "\uB3BB"}  // Value: 뎻

Python:

char = '\uB3BB'
print(char)  # Output: 뎻

Perl:

my $char = "\x{B3BB}";
print $char;  # Output: 뎻

PHP:

$char = "\x{B3BB}";
echo $char;  // Output: 뎻

Ruby:

char = "\u{B3BB}"
puts char  # Output: 뎻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46011;</p>  <!-- Display: 뎻 -->

HTML Hexadecimal:

<p>HTML hex: &#xB3BB;</p>  <!-- Display: 뎻 -->

URL Encoding:

// 뎻 URL encoding
https://unicodefinder.com/search.php?query=%EB%8E%BB

Encodings

MD5:

8864bfb89f7a49e495b737c07b249509

SHA1:

59321d8a6b7268014331e7951ec6ac2f3653929c

Base64:

6467