Unicode Finder

"됋" U+B40B(HANGUL SYLLABLE DWAELH)

U+B40B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DWAELH

Programming

C
\uB40B
JavaScript
\uB40B
Java
\uB40B
Json
\uB40B
Python
\uB40B
Perl
\x{B40B}
PHP
\x{B40B}
Ruby
\u{B40B}
Rust
\u{B40B}
Go
\uB40B

Web

CSS
\00B40B
HtmlDecimal
됋
HtmlHexadecimal
됋
Url
%EB%90%8B

Code

MD5
8a7872d0a731936c59af5bce97f3a9fd
Sha1
99b8adf99cd561310ddd2c2d603b36fab8262956
Base64
65CL

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB40B';
console.log(char);  // Output: 됋

Java:

char c = '\uB40B';
System.out.println(c);  // Output: 됋

JSON:

{"text": "\uB40B"}  // Value: 됋

Python:

char = '\uB40B'
print(char)  # Output: 됋

Perl:

my $char = "\x{B40B}";
print $char;  # Output: 됋

PHP:

$char = "\x{B40B}";
echo $char;  // Output: 됋

Ruby:

char = "\u{B40B}"
puts char  # Output: 됋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46091;</p>  <!-- Display: 됋 -->

HTML Hexadecimal:

<p>HTML hex: &#xB40B;</p>  <!-- Display: 됋 -->

URL Encoding:

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

Encodings

MD5:

8a7872d0a731936c59af5bce97f3a9fd

SHA1:

99b8adf99cd561310ddd2c2d603b36fab8262956

Base64:

65CL