Unicode Finder

"똨" U+B628(HANGUL SYLLABLE DDOK)

U+B628
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDOK

Programming

C
\uB628
JavaScript
\uB628
Java
\uB628
Json
\uB628
Python
\uB628
Perl
\x{B628}
PHP
\x{B628}
Ruby
\u{B628}
Rust
\u{B628}
Go
\uB628

Web

CSS
\00B628
HtmlDecimal
똨
HtmlHexadecimal
똨
Url
%EB%98%A8

Code

MD5
fbb11d35ebe3782b5c109d8eeab66be9
Sha1
425b71f91588e85827c6635e02491541686301f8
Base64
65io

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB628';
console.log(char);  // Output: 똨

Java:

char c = '\uB628';
System.out.println(c);  // Output: 똨

JSON:

{"text": "\uB628"}  // Value: 똨

Python:

char = '\uB628'
print(char)  # Output: 똨

Perl:

my $char = "\x{B628}";
print $char;  # Output: 똨

PHP:

$char = "\x{B628}";
echo $char;  // Output: 똨

Ruby:

char = "\u{B628}"
puts char  # Output: 똨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46632;</p>  <!-- Display: 똨 -->

HTML Hexadecimal:

<p>HTML hex: &#xB628;</p>  <!-- Display: 똨 -->

URL Encoding:

// 똨 URL encoding
https://unicodefinder.com/search.php?query=%EB%98%A8

Encodings

MD5:

fbb11d35ebe3782b5c109d8eeab66be9

SHA1:

425b71f91588e85827c6635e02491541686301f8

Base64:

65io