Unicode Finder

"돈" U+B3C8(HANGUL SYLLABLE DON)

U+B3C8
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DON

Programming

C
\uB3C8
JavaScript
\uB3C8
Java
\uB3C8
Json
\uB3C8
Python
\uB3C8
Perl
\x{B3C8}
PHP
\x{B3C8}
Ruby
\u{B3C8}
Rust
\u{B3C8}
Go
\uB3C8

Web

CSS
\00B3C8
HtmlDecimal
돈
HtmlHexadecimal
돈
Url
%EB%8F%88

Code

MD5
728f9e6621b886c9b54614763a16c423
Sha1
28ea0681ee7433c99c3e31876d42700c881a3560
Base64
64+I

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB3C8';
console.log(char);  // Output: 돈

Java:

char c = '\uB3C8';
System.out.println(c);  // Output: 돈

JSON:

{"text": "\uB3C8"}  // Value: 돈

Python:

char = '\uB3C8'
print(char)  # Output: 돈

Perl:

my $char = "\x{B3C8}";
print $char;  # Output: 돈

PHP:

$char = "\x{B3C8}";
echo $char;  // Output: 돈

Ruby:

char = "\u{B3C8}"
puts char  # Output: 돈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46024;</p>  <!-- Display: 돈 -->

HTML Hexadecimal:

<p>HTML hex: &#xB3C8;</p>  <!-- Display: 돈 -->

URL Encoding:

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

Encodings

MD5:

728f9e6621b886c9b54614763a16c423

SHA1:

28ea0681ee7433c99c3e31876d42700c881a3560

Base64:

64+I