Unicode Finder

"돹" U+B3F9(HANGUL SYLLABLE DWAT)

U+B3F9
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DWAT

Programming

C
\uB3F9
JavaScript
\uB3F9
Java
\uB3F9
Json
\uB3F9
Python
\uB3F9
Perl
\x{B3F9}
PHP
\x{B3F9}
Ruby
\u{B3F9}
Rust
\u{B3F9}
Go
\uB3F9

Web

CSS
\00B3F9
HtmlDecimal
돹
HtmlHexadecimal
돹
Url
%EB%8F%B9

Code

MD5
b814da7495b99831b0ffbb532948dac3
Sha1
8d59a3fc6dc7bdb549d39491f3f084b1564f3c2c
Base64
64+5

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB3F9';
console.log(char);  // Output: 돹

Java:

char c = '\uB3F9';
System.out.println(c);  // Output: 돹

JSON:

{"text": "\uB3F9"}  // Value: 돹

Python:

char = '\uB3F9'
print(char)  # Output: 돹

Perl:

my $char = "\x{B3F9}";
print $char;  # Output: 돹

PHP:

$char = "\x{B3F9}";
echo $char;  // Output: 돹

Ruby:

char = "\u{B3F9}"
puts char  # Output: 돹

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46073;</p>  <!-- Display: 돹 -->

HTML Hexadecimal:

<p>HTML hex: &#xB3F9;</p>  <!-- Display: 돹 -->

URL Encoding:

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

Encodings

MD5:

b814da7495b99831b0ffbb532948dac3

SHA1:

8d59a3fc6dc7bdb549d39491f3f084b1564f3c2c

Base64:

64+5