Unicode Finder

"땤" U+B564(HANGUL SYLLABLE DDAEK)

U+B564
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDAEK

Programming

C
\uB564
JavaScript
\uB564
Java
\uB564
Json
\uB564
Python
\uB564
Perl
\x{B564}
PHP
\x{B564}
Ruby
\u{B564}
Rust
\u{B564}
Go
\uB564

Web

CSS
\00B564
HtmlDecimal
땤
HtmlHexadecimal
땤
Url
%EB%95%A4

Code

MD5
c0f7f004718f33ec10a6b4d190ca598f
Sha1
5fa07def16bd78e0dd5cc60c743ffb9e278851e6
Base64
65Wk

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB564';
console.log(char);  // Output: 땤

Java:

char c = '\uB564';
System.out.println(c);  // Output: 땤

JSON:

{"text": "\uB564"}  // Value: 땤

Python:

char = '\uB564'
print(char)  # Output: 땤

Perl:

my $char = "\x{B564}";
print $char;  # Output: 땤

PHP:

$char = "\x{B564}";
echo $char;  // Output: 땤

Ruby:

char = "\u{B564}"
puts char  # Output: 땤

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46436;</p>  <!-- Display: 땤 -->

HTML Hexadecimal:

<p>HTML hex: &#xB564;</p>  <!-- Display: 땤 -->

URL Encoding:

// 땤 URL encoding
https://unicodefinder.com/search.php?query=%EB%95%A4

Encodings

MD5:

c0f7f004718f33ec10a6b4d190ca598f

SHA1:

5fa07def16bd78e0dd5cc60c743ffb9e278851e6

Base64:

65Wk