Unicode Finder

"띦" U+B766(HANGUL SYLLABLE DDINH)

U+B766
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDINH

Programming

C
\uB766
JavaScript
\uB766
Java
\uB766
Json
\uB766
Python
\uB766
Perl
\x{B766}
PHP
\x{B766}
Ruby
\u{B766}
Rust
\u{B766}
Go
\uB766

Web

CSS
\00B766
HtmlDecimal
띦
HtmlHexadecimal
띦
Url
%EB%9D%A6

Code

MD5
2f42da63d427fd81b2d0dd649a08fba5
Sha1
5d3d47a4cc8edbda2b8c01229d3a016cf71b5f43
Base64
652m

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB766';
console.log(char);  // Output: 띦

Java:

char c = '\uB766';
System.out.println(c);  // Output: 띦

JSON:

{"text": "\uB766"}  // Value: 띦

Python:

char = '\uB766'
print(char)  # Output: 띦

Perl:

my $char = "\x{B766}";
print $char;  # Output: 띦

PHP:

$char = "\x{B766}";
echo $char;  // Output: 띦

Ruby:

char = "\u{B766}"
puts char  # Output: 띦

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46950;</p>  <!-- Display: 띦 -->

HTML Hexadecimal:

<p>HTML hex: &#xB766;</p>  <!-- Display: 띦 -->

URL Encoding:

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

Encodings

MD5:

2f42da63d427fd81b2d0dd649a08fba5

SHA1:

5d3d47a4cc8edbda2b8c01229d3a016cf71b5f43

Base64:

652m