Unicode Finder

"떵" U+B5B5(HANGUL SYLLABLE DDEONG)

U+B5B5
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDEONG

Programming

C
\uB5B5
JavaScript
\uB5B5
Java
\uB5B5
Json
\uB5B5
Python
\uB5B5
Perl
\x{B5B5}
PHP
\x{B5B5}
Ruby
\u{B5B5}
Rust
\u{B5B5}
Go
\uB5B5

Web

CSS
\00B5B5
HtmlDecimal
떵
HtmlHexadecimal
떵
Url
%EB%96%B5

Code

MD5
59019cdc983be564be2cf3395a16b40b
Sha1
dedd8e5d625f721363e4a528bbe655d0eb2e5267
Base64
65a1

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB5B5';
console.log(char);  // Output: 떵

Java:

char c = '\uB5B5';
System.out.println(c);  // Output: 떵

JSON:

{"text": "\uB5B5"}  // Value: 떵

Python:

char = '\uB5B5'
print(char)  # Output: 떵

Perl:

my $char = "\x{B5B5}";
print $char;  # Output: 떵

PHP:

$char = "\x{B5B5}";
echo $char;  // Output: 떵

Ruby:

char = "\u{B5B5}"
puts char  # Output: 떵

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46517;</p>  <!-- Display: 떵 -->

HTML Hexadecimal:

<p>HTML hex: &#xB5B5;</p>  <!-- Display: 떵 -->

URL Encoding:

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

Encodings

MD5:

59019cdc983be564be2cf3395a16b40b

SHA1:

dedd8e5d625f721363e4a528bbe655d0eb2e5267

Base64:

65a1