Unicode Finder

"돼" U+B3FC(HANGUL SYLLABLE DWAE)

U+B3FC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DWAE

Programming

C
\uB3FC
JavaScript
\uB3FC
Java
\uB3FC
Json
\uB3FC
Python
\uB3FC
Perl
\x{B3FC}
PHP
\x{B3FC}
Ruby
\u{B3FC}
Rust
\u{B3FC}
Go
\uB3FC

Web

CSS
\00B3FC
HtmlDecimal
돼
HtmlHexadecimal
돼
Url
%EB%8F%BC

Code

MD5
a43eac20a568f340be95a5171cea63c2
Sha1
eb4e9a8cb5315a3ad00db3cad9222675979a3d25
Base64
64+8

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB3FC';
console.log(char);  // Output: 돼

Java:

char c = '\uB3FC';
System.out.println(c);  // Output: 돼

JSON:

{"text": "\uB3FC"}  // Value: 돼

Python:

char = '\uB3FC'
print(char)  # Output: 돼

Perl:

my $char = "\x{B3FC}";
print $char;  # Output: 돼

PHP:

$char = "\x{B3FC}";
echo $char;  // Output: 돼

Ruby:

char = "\u{B3FC}"
puts char  # Output: 돼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46076;</p>  <!-- Display: 돼 -->

HTML Hexadecimal:

<p>HTML hex: &#xB3FC;</p>  <!-- Display: 돼 -->

URL Encoding:

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

Encodings

MD5:

a43eac20a568f340be95a5171cea63c2

SHA1:

eb4e9a8cb5315a3ad00db3cad9222675979a3d25

Base64:

64+8