Unicode Finder

"돳" U+B3F3(HANGUL SYLLABLE DWAS)

U+B3F3
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DWAS

Programming

C
\uB3F3
JavaScript
\uB3F3
Java
\uB3F3
Json
\uB3F3
Python
\uB3F3
Perl
\x{B3F3}
PHP
\x{B3F3}
Ruby
\u{B3F3}
Rust
\u{B3F3}
Go
\uB3F3

Web

CSS
\00B3F3
HtmlDecimal
돳
HtmlHexadecimal
돳
Url
%EB%8F%B3

Code

MD5
6bd56c0376e9ff9dfb5ea0a8ba998ae1
Sha1
7ece9266dded5012da82feae507bd2e7711b8fbe
Base64
64+z

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB3F3';
console.log(char);  // Output: 돳

Java:

char c = '\uB3F3';
System.out.println(c);  // Output: 돳

JSON:

{"text": "\uB3F3"}  // Value: 돳

Python:

char = '\uB3F3'
print(char)  # Output: 돳

Perl:

my $char = "\x{B3F3}";
print $char;  # Output: 돳

PHP:

$char = "\x{B3F3}";
echo $char;  // Output: 돳

Ruby:

char = "\u{B3F3}"
puts char  # Output: 돳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46067;</p>  <!-- Display: 돳 -->

HTML Hexadecimal:

<p>HTML hex: &#xB3F3;</p>  <!-- Display: 돳 -->

URL Encoding:

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

Encodings

MD5:

6bd56c0376e9ff9dfb5ea0a8ba998ae1

SHA1:

7ece9266dded5012da82feae507bd2e7711b8fbe

Base64:

64+z