Unicode Finder

"됏" U+B40F(HANGUL SYLLABLE DWAES)

U+B40F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DWAES

Programming

C
\uB40F
JavaScript
\uB40F
Java
\uB40F
Json
\uB40F
Python
\uB40F
Perl
\x{B40F}
PHP
\x{B40F}
Ruby
\u{B40F}
Rust
\u{B40F}
Go
\uB40F

Web

CSS
\00B40F
HtmlDecimal
됏
HtmlHexadecimal
됏
Url
%EB%90%8F

Code

MD5
4854454332e7c57f854a91543c4b37b4
Sha1
f9e61e77d2c92a35ecf596ee3653cf3db40de1de
Base64
65CP

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB40F';
console.log(char);  // Output: 됏

Java:

char c = '\uB40F';
System.out.println(c);  // Output: 됏

JSON:

{"text": "\uB40F"}  // Value: 됏

Python:

char = '\uB40F'
print(char)  # Output: 됏

Perl:

my $char = "\x{B40F}";
print $char;  # Output: 됏

PHP:

$char = "\x{B40F}";
echo $char;  // Output: 됏

Ruby:

char = "\u{B40F}"
puts char  # Output: 됏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46095;</p>  <!-- Display: 됏 -->

HTML Hexadecimal:

<p>HTML hex: &#xB40F;</p>  <!-- Display: 됏 -->

URL Encoding:

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

Encodings

MD5:

4854454332e7c57f854a91543c4b37b4

SHA1:

f9e61e77d2c92a35ecf596ee3653cf3db40de1de

Base64:

65CP