Unicode Finder

"됮" U+B42E(HANGUL SYLLABLE DOEJ)

U+B42E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DOEJ

Programming

C
\uB42E
JavaScript
\uB42E
Java
\uB42E
Json
\uB42E
Python
\uB42E
Perl
\x{B42E}
PHP
\x{B42E}
Ruby
\u{B42E}
Rust
\u{B42E}
Go
\uB42E

Web

CSS
\00B42E
HtmlDecimal
됮
HtmlHexadecimal
됮
Url
%EB%90%AE

Code

MD5
59c9d322b838301af427089f5c5ef9e3
Sha1
dbf23134c2e017cd72349afc9d3e55917f1a213c
Base64
65Cu

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB42E';
console.log(char);  // Output: 됮

Java:

char c = '\uB42E';
System.out.println(c);  // Output: 됮

JSON:

{"text": "\uB42E"}  // Value: 됮

Python:

char = '\uB42E'
print(char)  # Output: 됮

Perl:

my $char = "\x{B42E}";
print $char;  # Output: 됮

PHP:

$char = "\x{B42E}";
echo $char;  // Output: 됮

Ruby:

char = "\u{B42E}"
puts char  # Output: 됮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46126;</p>  <!-- Display: 됮 -->

HTML Hexadecimal:

<p>HTML hex: &#xB42E;</p>  <!-- Display: 됮 -->

URL Encoding:

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

Encodings

MD5:

59c9d322b838301af427089f5c5ef9e3

SHA1:

dbf23134c2e017cd72349afc9d3e55917f1a213c

Base64:

65Cu