Unicode Finder

"됾" U+B43E(HANGUL SYLLABLE DYOLM)

U+B43E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DYOLM

Programming

C
\uB43E
JavaScript
\uB43E
Java
\uB43E
Json
\uB43E
Python
\uB43E
Perl
\x{B43E}
PHP
\x{B43E}
Ruby
\u{B43E}
Rust
\u{B43E}
Go
\uB43E

Web

CSS
\00B43E
HtmlDecimal
됾
HtmlHexadecimal
됾
Url
%EB%90%BE

Code

MD5
0d9e4cc5ba7e95af2f7f749da36813fb
Sha1
450c87955d8bc3c9b0930c4f882059f05d8bda62
Base64
65C+

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB43E';
console.log(char);  // Output: 됾

Java:

char c = '\uB43E';
System.out.println(c);  // Output: 됾

JSON:

{"text": "\uB43E"}  // Value: 됾

Python:

char = '\uB43E'
print(char)  # Output: 됾

Perl:

my $char = "\x{B43E}";
print $char;  # Output: 됾

PHP:

$char = "\x{B43E}";
echo $char;  // Output: 됾

Ruby:

char = "\u{B43E}"
puts char  # Output: 됾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46142;</p>  <!-- Display: 됾 -->

HTML Hexadecimal:

<p>HTML hex: &#xB43E;</p>  <!-- Display: 됾 -->

URL Encoding:

// 됾 URL encoding
https://unicodefinder.com/search.php?query=%EB%90%BE

Encodings

MD5:

0d9e4cc5ba7e95af2f7f749da36813fb

SHA1:

450c87955d8bc3c9b0930c4f882059f05d8bda62

Base64:

65C+