Unicode Finder

"딋" U+B50B(HANGUL SYLLABLE DYIS)

U+B50B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DYIS

Programming

C
\uB50B
JavaScript
\uB50B
Java
\uB50B
Json
\uB50B
Python
\uB50B
Perl
\x{B50B}
PHP
\x{B50B}
Ruby
\u{B50B}
Rust
\u{B50B}
Go
\uB50B

Web

CSS
\00B50B
HtmlDecimal
딋
HtmlHexadecimal
딋
Url
%EB%94%8B

Code

MD5
bcc1840d485c70e90ff5b8f2a2a8e7f4
Sha1
35c850ba95dea74c8da85a6df18868dcd0aafee2
Base64
65SL

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB50B';
console.log(char);  // Output: 딋

Java:

char c = '\uB50B';
System.out.println(c);  // Output: 딋

JSON:

{"text": "\uB50B"}  // Value: 딋

Python:

char = '\uB50B'
print(char)  # Output: 딋

Perl:

my $char = "\x{B50B}";
print $char;  # Output: 딋

PHP:

$char = "\x{B50B}";
echo $char;  // Output: 딋

Ruby:

char = "\u{B50B}"
puts char  # Output: 딋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46347;</p>  <!-- Display: 딋 -->

HTML Hexadecimal:

<p>HTML hex: &#xB50B;</p>  <!-- Display: 딋 -->

URL Encoding:

// 딋 URL encoding
https://unicodefinder.com/search.php?query=%EB%94%8B

Encodings

MD5:

bcc1840d485c70e90ff5b8f2a2a8e7f4

SHA1:

35c850ba95dea74c8da85a6df18868dcd0aafee2

Base64:

65SL