Unicode Finder

"돶" U+B3F6(HANGUL SYLLABLE DWAJ)

U+B3F6
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DWAJ

Programming

C
\uB3F6
JavaScript
\uB3F6
Java
\uB3F6
Json
\uB3F6
Python
\uB3F6
Perl
\x{B3F6}
PHP
\x{B3F6}
Ruby
\u{B3F6}
Rust
\u{B3F6}
Go
\uB3F6

Web

CSS
\00B3F6
HtmlDecimal
돶
HtmlHexadecimal
돶
Url
%EB%8F%B6

Code

MD5
a306c198f69d98e49e679a3140637b04
Sha1
697f164313818bb95352898ad66853efb42ae416
Base64
64+2

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB3F6';
console.log(char);  // Output: 돶

Java:

char c = '\uB3F6';
System.out.println(c);  // Output: 돶

JSON:

{"text": "\uB3F6"}  // Value: 돶

Python:

char = '\uB3F6'
print(char)  # Output: 돶

Perl:

my $char = "\x{B3F6}";
print $char;  # Output: 돶

PHP:

$char = "\x{B3F6}";
echo $char;  // Output: 돶

Ruby:

char = "\u{B3F6}"
puts char  # Output: 돶

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46070;</p>  <!-- Display: 돶 -->

HTML Hexadecimal:

<p>HTML hex: &#xB3F6;</p>  <!-- Display: 돶 -->

URL Encoding:

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

Encodings

MD5:

a306c198f69d98e49e679a3140637b04

SHA1:

697f164313818bb95352898ad66853efb42ae416

Base64:

64+2