Unicode Finder

"뎲" U+B3B2(HANGUL SYLLABLE DYELM)

U+B3B2
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DYELM

Programming

C
\uB3B2
JavaScript
\uB3B2
Java
\uB3B2
Json
\uB3B2
Python
\uB3B2
Perl
\x{B3B2}
PHP
\x{B3B2}
Ruby
\u{B3B2}
Rust
\u{B3B2}
Go
\uB3B2

Web

CSS
\00B3B2
HtmlDecimal
뎲
HtmlHexadecimal
뎲
Url
%EB%8E%B2

Code

MD5
a4eb3f81b513d998320cfff8344cbf23
Sha1
c969eb1970c17e6b9ca487422349b2556ef0ce3a
Base64
646y

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB3B2';
console.log(char);  // Output: 뎲

Java:

char c = '\uB3B2';
System.out.println(c);  // Output: 뎲

JSON:

{"text": "\uB3B2"}  // Value: 뎲

Python:

char = '\uB3B2'
print(char)  # Output: 뎲

Perl:

my $char = "\x{B3B2}";
print $char;  # Output: 뎲

PHP:

$char = "\x{B3B2}";
echo $char;  // Output: 뎲

Ruby:

char = "\u{B3B2}"
puts char  # Output: 뎲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46002;</p>  <!-- Display: 뎲 -->

HTML Hexadecimal:

<p>HTML hex: &#xB3B2;</p>  <!-- Display: 뎲 -->

URL Encoding:

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

Encodings

MD5:

a4eb3f81b513d998320cfff8344cbf23

SHA1:

c969eb1970c17e6b9ca487422349b2556ef0ce3a

Base64:

646y