Unicode Finder

"땪" U+B56A(HANGUL SYLLABLE DDYAGG)

U+B56A
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDYAGG

Programming

C
\uB56A
JavaScript
\uB56A
Java
\uB56A
Json
\uB56A
Python
\uB56A
Perl
\x{B56A}
PHP
\x{B56A}
Ruby
\u{B56A}
Rust
\u{B56A}
Go
\uB56A

Web

CSS
\00B56A
HtmlDecimal
땪
HtmlHexadecimal
땪
Url
%EB%95%AA

Code

MD5
6769f00620e35ea63e4e1606eeae4df5
Sha1
8e3c3b73bfcff6d471a505a6b34044d13bbc06df
Base64
65Wq

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB56A';
console.log(char);  // Output: 땪

Java:

char c = '\uB56A';
System.out.println(c);  // Output: 땪

JSON:

{"text": "\uB56A"}  // Value: 땪

Python:

char = '\uB56A'
print(char)  # Output: 땪

Perl:

my $char = "\x{B56A}";
print $char;  # Output: 땪

PHP:

$char = "\x{B56A}";
echo $char;  // Output: 땪

Ruby:

char = "\u{B56A}"
puts char  # Output: 땪

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46442;</p>  <!-- Display: 땪 -->

HTML Hexadecimal:

<p>HTML hex: &#xB56A;</p>  <!-- Display: 땪 -->

URL Encoding:

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

Encodings

MD5:

6769f00620e35ea63e4e1606eeae4df5

SHA1:

8e3c3b73bfcff6d471a505a6b34044d13bbc06df

Base64:

65Wq