Unicode Finder

"떞" U+B59E(HANGUL SYLLABLE DDYAEP)

U+B59E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDYAEP

Programming

C
\uB59E
JavaScript
\uB59E
Java
\uB59E
Json
\uB59E
Python
\uB59E
Perl
\x{B59E}
PHP
\x{B59E}
Ruby
\u{B59E}
Rust
\u{B59E}
Go
\uB59E

Web

CSS
\00B59E
HtmlDecimal
떞
HtmlHexadecimal
떞
Url
%EB%96%9E

Code

MD5
6ab23558536534d11716604b1bc11809
Sha1
0828eaeae21bdaf9cb2950574f63ea7ca3228cf4
Base64
65ae

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB59E';
console.log(char);  // Output: 떞

Java:

char c = '\uB59E';
System.out.println(c);  // Output: 떞

JSON:

{"text": "\uB59E"}  // Value: 떞

Python:

char = '\uB59E'
print(char)  # Output: 떞

Perl:

my $char = "\x{B59E}";
print $char;  # Output: 떞

PHP:

$char = "\x{B59E}";
echo $char;  // Output: 떞

Ruby:

char = "\u{B59E}"
puts char  # Output: 떞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46494;</p>  <!-- Display: 떞 -->

HTML Hexadecimal:

<p>HTML hex: &#xB59E;</p>  <!-- Display: 떞 -->

URL Encoding:

// 떞 URL encoding
https://unicodefinder.com/search.php?query=%EB%96%9E

Encodings

MD5:

6ab23558536534d11716604b1bc11809

SHA1:

0828eaeae21bdaf9cb2950574f63ea7ca3228cf4

Base64:

65ae