Unicode Finder

"띖" U+B756(HANGUL SYLLABLE DDYIBS)

U+B756
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDYIBS

Programming

C
\uB756
JavaScript
\uB756
Java
\uB756
Json
\uB756
Python
\uB756
Perl
\x{B756}
PHP
\x{B756}
Ruby
\u{B756}
Rust
\u{B756}
Go
\uB756

Web

CSS
\00B756
HtmlDecimal
띖
HtmlHexadecimal
띖
Url
%EB%9D%96

Code

MD5
0cc43d3f93c32be76912debeb7f18054
Sha1
19d42913dd4578533076ac6bac8bc1f99897e6aa
Base64
652W

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB756';
console.log(char);  // Output: 띖

Java:

char c = '\uB756';
System.out.println(c);  // Output: 띖

JSON:

{"text": "\uB756"}  // Value: 띖

Python:

char = '\uB756'
print(char)  # Output: 띖

Perl:

my $char = "\x{B756}";
print $char;  # Output: 띖

PHP:

$char = "\x{B756}";
echo $char;  // Output: 띖

Ruby:

char = "\u{B756}"
puts char  # Output: 띖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46934;</p>  <!-- Display: 띖 -->

HTML Hexadecimal:

<p>HTML hex: &#xB756;</p>  <!-- Display: 띖 -->

URL Encoding:

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

Encodings

MD5:

0cc43d3f93c32be76912debeb7f18054

SHA1:

19d42913dd4578533076ac6bac8bc1f99897e6aa

Base64:

652W