Unicode Finder

"떨" U+B5A8(HANGUL SYLLABLE DDEOL)

U+B5A8
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDEOL

Programming

C
\uB5A8
JavaScript
\uB5A8
Java
\uB5A8
Json
\uB5A8
Python
\uB5A8
Perl
\x{B5A8}
PHP
\x{B5A8}
Ruby
\u{B5A8}
Rust
\u{B5A8}
Go
\uB5A8

Web

CSS
\00B5A8
HtmlDecimal
떨
HtmlHexadecimal
떨
Url
%EB%96%A8

Code

MD5
e0adb43e45326c85e189454299a98a7d
Sha1
e01e30acd5ecb72ea7d519644a2d87bfd7c27205
Base64
65ao

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB5A8';
console.log(char);  // Output: 떨

Java:

char c = '\uB5A8';
System.out.println(c);  // Output: 떨

JSON:

{"text": "\uB5A8"}  // Value: 떨

Python:

char = '\uB5A8'
print(char)  # Output: 떨

Perl:

my $char = "\x{B5A8}";
print $char;  # Output: 떨

PHP:

$char = "\x{B5A8}";
echo $char;  // Output: 떨

Ruby:

char = "\u{B5A8}"
puts char  # Output: 떨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46504;</p>  <!-- Display: 떨 -->

HTML Hexadecimal:

<p>HTML hex: &#xB5A8;</p>  <!-- Display: 떨 -->

URL Encoding:

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

Encodings

MD5:

e0adb43e45326c85e189454299a98a7d

SHA1:

e01e30acd5ecb72ea7d519644a2d87bfd7c27205

Base64:

65ao