Unicode Finder

"띐" U+B750(HANGUL SYLLABLE DDYILS)

U+B750
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDYILS

Programming

C
\uB750
JavaScript
\uB750
Java
\uB750
Json
\uB750
Python
\uB750
Perl
\x{B750}
PHP
\x{B750}
Ruby
\u{B750}
Rust
\u{B750}
Go
\uB750

Web

CSS
\00B750
HtmlDecimal
띐
HtmlHexadecimal
띐
Url
%EB%9D%90

Code

MD5
4bf43df2ccfca441849360e3b02e99fe
Sha1
f1d08ab8302ded299a21339ed979af0df3f8c5e2
Base64
652Q

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB750';
console.log(char);  // Output: 띐

Java:

char c = '\uB750';
System.out.println(c);  // Output: 띐

JSON:

{"text": "\uB750"}  // Value: 띐

Python:

char = '\uB750'
print(char)  # Output: 띐

Perl:

my $char = "\x{B750}";
print $char;  # Output: 띐

PHP:

$char = "\x{B750}";
echo $char;  // Output: 띐

Ruby:

char = "\u{B750}"
puts char  # Output: 띐

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46928;</p>  <!-- Display: 띐 -->

HTML Hexadecimal:

<p>HTML hex: &#xB750;</p>  <!-- Display: 띐 -->

URL Encoding:

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

Encodings

MD5:

4bf43df2ccfca441849360e3b02e99fe

SHA1:

f1d08ab8302ded299a21339ed979af0df3f8c5e2

Base64:

652Q