Unicode Finder

"돦" U+B3E6(HANGUL SYLLABLE DWANH)

U+B3E6
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DWANH

Programming

C
\uB3E6
JavaScript
\uB3E6
Java
\uB3E6
Json
\uB3E6
Python
\uB3E6
Perl
\x{B3E6}
PHP
\x{B3E6}
Ruby
\u{B3E6}
Rust
\u{B3E6}
Go
\uB3E6

Web

CSS
\00B3E6
HtmlDecimal
돦
HtmlHexadecimal
돦
Url
%EB%8F%A6

Code

MD5
813c873d2120b269b2caf13c997a89bb
Sha1
e21cc8fa7b095e142aa6ffafa6d509e583548a8d
Base64
64+m

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB3E6';
console.log(char);  // Output: 돦

Java:

char c = '\uB3E6';
System.out.println(c);  // Output: 돦

JSON:

{"text": "\uB3E6"}  // Value: 돦

Python:

char = '\uB3E6'
print(char)  # Output: 돦

Perl:

my $char = "\x{B3E6}";
print $char;  # Output: 돦

PHP:

$char = "\x{B3E6}";
echo $char;  // Output: 돦

Ruby:

char = "\u{B3E6}"
puts char  # Output: 돦

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46054;</p>  <!-- Display: 돦 -->

HTML Hexadecimal:

<p>HTML hex: &#xB3E6;</p>  <!-- Display: 돦 -->

URL Encoding:

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

Encodings

MD5:

813c873d2120b269b2caf13c997a89bb

SHA1:

e21cc8fa7b095e142aa6ffafa6d509e583548a8d

Base64:

64+m