Unicode Finder

"돻" U+B3FB(HANGUL SYLLABLE DWAH)

U+B3FB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DWAH

Programming

C
\uB3FB
JavaScript
\uB3FB
Java
\uB3FB
Json
\uB3FB
Python
\uB3FB
Perl
\x{B3FB}
PHP
\x{B3FB}
Ruby
\u{B3FB}
Rust
\u{B3FB}
Go
\uB3FB

Web

CSS
\00B3FB
HtmlDecimal
돻
HtmlHexadecimal
돻
Url
%EB%8F%BB

Code

MD5
fd0ce25772977d7fd4fe387a2ba49945
Sha1
4cfc4e78f130c5406814bcf28b338abb0f8e7a0c
Base64
64+7

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB3FB';
console.log(char);  // Output: 돻

Java:

char c = '\uB3FB';
System.out.println(c);  // Output: 돻

JSON:

{"text": "\uB3FB"}  // Value: 돻

Python:

char = '\uB3FB'
print(char)  # Output: 돻

Perl:

my $char = "\x{B3FB}";
print $char;  # Output: 돻

PHP:

$char = "\x{B3FB}";
echo $char;  // Output: 돻

Ruby:

char = "\u{B3FB}"
puts char  # Output: 돻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46075;</p>  <!-- Display: 돻 -->

HTML Hexadecimal:

<p>HTML hex: &#xB3FB;</p>  <!-- Display: 돻 -->

URL Encoding:

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

Encodings

MD5:

fd0ce25772977d7fd4fe387a2ba49945

SHA1:

4cfc4e78f130c5406814bcf28b338abb0f8e7a0c

Base64:

64+7