Unicode Finder

"떎" U+B58E(HANGUL SYLLABLE DDYAELM)

U+B58E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDYAELM

Programming

C
\uB58E
JavaScript
\uB58E
Java
\uB58E
Json
\uB58E
Python
\uB58E
Perl
\x{B58E}
PHP
\x{B58E}
Ruby
\u{B58E}
Rust
\u{B58E}
Go
\uB58E

Web

CSS
\00B58E
HtmlDecimal
떎
HtmlHexadecimal
떎
Url
%EB%96%8E

Code

MD5
41479c1beb5af6aed1df6c73139c4620
Sha1
b3f7ee1f93677f2db56123fa392bb0df31becdce
Base64
65aO

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB58E';
console.log(char);  // Output: 떎

Java:

char c = '\uB58E';
System.out.println(c);  // Output: 떎

JSON:

{"text": "\uB58E"}  // Value: 떎

Python:

char = '\uB58E'
print(char)  # Output: 떎

Perl:

my $char = "\x{B58E}";
print $char;  # Output: 떎

PHP:

$char = "\x{B58E}";
echo $char;  // Output: 떎

Ruby:

char = "\u{B58E}"
puts char  # Output: 떎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46478;</p>  <!-- Display: 떎 -->

HTML Hexadecimal:

<p>HTML hex: &#xB58E;</p>  <!-- Display: 떎 -->

URL Encoding:

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

Encodings

MD5:

41479c1beb5af6aed1df6c73139c4620

SHA1:

b3f7ee1f93677f2db56123fa392bb0df31becdce

Base64:

65aO