Unicode Finder

"뎫" U+B3AB(HANGUL SYLLABLE DYEGS)

U+B3AB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DYEGS

Programming

C
\uB3AB
JavaScript
\uB3AB
Java
\uB3AB
Json
\uB3AB
Python
\uB3AB
Perl
\x{B3AB}
PHP
\x{B3AB}
Ruby
\u{B3AB}
Rust
\u{B3AB}
Go
\uB3AB

Web

CSS
\00B3AB
HtmlDecimal
뎫
HtmlHexadecimal
뎫
Url
%EB%8E%AB

Code

MD5
132e0016e6c86c9d9921b72b85a8c81b
Sha1
4f672c6011b7b0928bb31477355399bc069f7d13
Base64
646r

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB3AB';
console.log(char);  // Output: 뎫

Java:

char c = '\uB3AB';
System.out.println(c);  // Output: 뎫

JSON:

{"text": "\uB3AB"}  // Value: 뎫

Python:

char = '\uB3AB'
print(char)  # Output: 뎫

Perl:

my $char = "\x{B3AB}";
print $char;  # Output: 뎫

PHP:

$char = "\x{B3AB}";
echo $char;  // Output: 뎫

Ruby:

char = "\u{B3AB}"
puts char  # Output: 뎫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45995;</p>  <!-- Display: 뎫 -->

HTML Hexadecimal:

<p>HTML hex: &#xB3AB;</p>  <!-- Display: 뎫 -->

URL Encoding:

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

Encodings

MD5:

132e0016e6c86c9d9921b72b85a8c81b

SHA1:

4f672c6011b7b0928bb31477355399bc069f7d13

Base64:

646r