Unicode Finder

"돬" U+B3EC(HANGUL SYLLABLE DWALS)

U+B3EC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DWALS

Programming

C
\uB3EC
JavaScript
\uB3EC
Java
\uB3EC
Json
\uB3EC
Python
\uB3EC
Perl
\x{B3EC}
PHP
\x{B3EC}
Ruby
\u{B3EC}
Rust
\u{B3EC}
Go
\uB3EC

Web

CSS
\00B3EC
HtmlDecimal
돬
HtmlHexadecimal
돬
Url
%EB%8F%AC

Code

MD5
352df4e56844a238d0fff361573cbee2
Sha1
caeff8bb0c7faa13de49a45c507a186bb2d7ff2f
Base64
64+s

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB3EC';
console.log(char);  // Output: 돬

Java:

char c = '\uB3EC';
System.out.println(c);  // Output: 돬

JSON:

{"text": "\uB3EC"}  // Value: 돬

Python:

char = '\uB3EC'
print(char)  # Output: 돬

Perl:

my $char = "\x{B3EC}";
print $char;  # Output: 돬

PHP:

$char = "\x{B3EC}";
echo $char;  // Output: 돬

Ruby:

char = "\u{B3EC}"
puts char  # Output: 돬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46060;</p>  <!-- Display: 돬 -->

HTML Hexadecimal:

<p>HTML hex: &#xB3EC;</p>  <!-- Display: 돬 -->

URL Encoding:

// 돬 URL encoding
https://unicodefinder.com/search.php?query=%EB%8F%AC

Encodings

MD5:

352df4e56844a238d0fff361573cbee2

SHA1:

caeff8bb0c7faa13de49a45c507a186bb2d7ff2f

Base64:

64+s