Unicode Finder

"띲" U+B772(HANGUL SYLLABLE DDIBS)

U+B772
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDIBS

Programming

C
\uB772
JavaScript
\uB772
Java
\uB772
Json
\uB772
Python
\uB772
Perl
\x{B772}
PHP
\x{B772}
Ruby
\u{B772}
Rust
\u{B772}
Go
\uB772

Web

CSS
\00B772
HtmlDecimal
띲
HtmlHexadecimal
띲
Url
%EB%9D%B2

Code

MD5
c8ea1d11a0e9ae5f297168bc36f33288
Sha1
37eeb79904a501d8a6d61113df01ae1064933596
Base64
652y

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB772';
console.log(char);  // Output: 띲

Java:

char c = '\uB772';
System.out.println(c);  // Output: 띲

JSON:

{"text": "\uB772"}  // Value: 띲

Python:

char = '\uB772'
print(char)  # Output: 띲

Perl:

my $char = "\x{B772}";
print $char;  # Output: 띲

PHP:

$char = "\x{B772}";
echo $char;  // Output: 띲

Ruby:

char = "\u{B772}"
puts char  # Output: 띲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46962;</p>  <!-- Display: 띲 -->

HTML Hexadecimal:

<p>HTML hex: &#xB772;</p>  <!-- Display: 띲 -->

URL Encoding:

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

Encodings

MD5:

c8ea1d11a0e9ae5f297168bc36f33288

SHA1:

37eeb79904a501d8a6d61113df01ae1064933596

Base64:

652y