Unicode Finder

"딾" U+B53E(HANGUL SYLLABLE DDALP)

U+B53E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDALP

Programming

C
\uB53E
JavaScript
\uB53E
Java
\uB53E
Json
\uB53E
Python
\uB53E
Perl
\x{B53E}
PHP
\x{B53E}
Ruby
\u{B53E}
Rust
\u{B53E}
Go
\uB53E

Web

CSS
\00B53E
HtmlDecimal
딾
HtmlHexadecimal
딾
Url
%EB%94%BE

Code

MD5
93485b0eefe52e3e1d7644e202401856
Sha1
d833e50ea6b02e72f95b907ec83528b1d7d91b7e
Base64
65S+

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB53E';
console.log(char);  // Output: 딾

Java:

char c = '\uB53E';
System.out.println(c);  // Output: 딾

JSON:

{"text": "\uB53E"}  // Value: 딾

Python:

char = '\uB53E'
print(char)  # Output: 딾

Perl:

my $char = "\x{B53E}";
print $char;  # Output: 딾

PHP:

$char = "\x{B53E}";
echo $char;  // Output: 딾

Ruby:

char = "\u{B53E}"
puts char  # Output: 딾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46398;</p>  <!-- Display: 딾 -->

HTML Hexadecimal:

<p>HTML hex: &#xB53E;</p>  <!-- Display: 딾 -->

URL Encoding:

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

Encodings

MD5:

93485b0eefe52e3e1d7644e202401856

SHA1:

d833e50ea6b02e72f95b907ec83528b1d7d91b7e

Base64:

65S+