Unicode Finder

"떔" U+B594(HANGUL SYLLABLE DDYAEM)

U+B594
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDYAEM

Programming

C
\uB594
JavaScript
\uB594
Java
\uB594
Json
\uB594
Python
\uB594
Perl
\x{B594}
PHP
\x{B594}
Ruby
\u{B594}
Rust
\u{B594}
Go
\uB594

Web

CSS
\00B594
HtmlDecimal
떔
HtmlHexadecimal
떔
Url
%EB%96%94

Code

MD5
311886a2cdf1e1c6e5e683eb63bde3a9
Sha1
62bba53ad8d5d6af93d2b8c2159e8f72eb70dfe5
Base64
65aU

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB594';
console.log(char);  // Output: 떔

Java:

char c = '\uB594';
System.out.println(c);  // Output: 떔

JSON:

{"text": "\uB594"}  // Value: 떔

Python:

char = '\uB594'
print(char)  # Output: 떔

Perl:

my $char = "\x{B594}";
print $char;  # Output: 떔

PHP:

$char = "\x{B594}";
echo $char;  // Output: 떔

Ruby:

char = "\u{B594}"
puts char  # Output: 떔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46484;</p>  <!-- Display: 떔 -->

HTML Hexadecimal:

<p>HTML hex: &#xB594;</p>  <!-- Display: 떔 -->

URL Encoding:

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

Encodings

MD5:

311886a2cdf1e1c6e5e683eb63bde3a9

SHA1:

62bba53ad8d5d6af93d2b8c2159e8f72eb70dfe5

Base64:

65aU