Unicode Finder

"땥" U+B565(HANGUL SYLLABLE DDAET)

U+B565
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDAET

Programming

C
\uB565
JavaScript
\uB565
Java
\uB565
Json
\uB565
Python
\uB565
Perl
\x{B565}
PHP
\x{B565}
Ruby
\u{B565}
Rust
\u{B565}
Go
\uB565

Web

CSS
\00B565
HtmlDecimal
땥
HtmlHexadecimal
땥
Url
%EB%95%A5

Code

MD5
2e25bdd2945e919247e6a1792a9c2a88
Sha1
0c58461fb26075a1dde08979f35c04ee99fce0a5
Base64
65Wl

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB565';
console.log(char);  // Output: 땥

Java:

char c = '\uB565';
System.out.println(c);  // Output: 땥

JSON:

{"text": "\uB565"}  // Value: 땥

Python:

char = '\uB565'
print(char)  # Output: 땥

Perl:

my $char = "\x{B565}";
print $char;  # Output: 땥

PHP:

$char = "\x{B565}";
echo $char;  // Output: 땥

Ruby:

char = "\u{B565}"
puts char  # Output: 땥

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46437;</p>  <!-- Display: 땥 -->

HTML Hexadecimal:

<p>HTML hex: &#xB565;</p>  <!-- Display: 땥 -->

URL Encoding:

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

Encodings

MD5:

2e25bdd2945e919247e6a1792a9c2a88

SHA1:

0c58461fb26075a1dde08979f35c04ee99fce0a5

Base64:

65Wl