Unicode Finder

"떖" U+B596(HANGUL SYLLABLE DDYAEBS)

U+B596
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDYAEBS

Programming

C
\uB596
JavaScript
\uB596
Java
\uB596
Json
\uB596
Python
\uB596
Perl
\x{B596}
PHP
\x{B596}
Ruby
\u{B596}
Rust
\u{B596}
Go
\uB596

Web

CSS
\00B596
HtmlDecimal
떖
HtmlHexadecimal
떖
Url
%EB%96%96

Code

MD5
34493d5fde068e7648f69cd959069b46
Sha1
a948a1d9299e280824e37b57df7fcc3dd7422f83
Base64
65aW

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB596';
console.log(char);  // Output: 떖

Java:

char c = '\uB596';
System.out.println(c);  // Output: 떖

JSON:

{"text": "\uB596"}  // Value: 떖

Python:

char = '\uB596'
print(char)  # Output: 떖

Perl:

my $char = "\x{B596}";
print $char;  # Output: 떖

PHP:

$char = "\x{B596}";
echo $char;  // Output: 떖

Ruby:

char = "\u{B596}"
puts char  # Output: 떖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46486;</p>  <!-- Display: 떖 -->

HTML Hexadecimal:

<p>HTML hex: &#xB596;</p>  <!-- Display: 떖 -->

URL Encoding:

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

Encodings

MD5:

34493d5fde068e7648f69cd959069b46

SHA1:

a948a1d9299e280824e37b57df7fcc3dd7422f83

Base64:

65aW