Unicode Finder

"땨" U+B568(HANGUL SYLLABLE DDYA)

U+B568
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDYA

Programming

C
\uB568
JavaScript
\uB568
Java
\uB568
Json
\uB568
Python
\uB568
Perl
\x{B568}
PHP
\x{B568}
Ruby
\u{B568}
Rust
\u{B568}
Go
\uB568

Web

CSS
\00B568
HtmlDecimal
땨
HtmlHexadecimal
땨
Url
%EB%95%A8

Code

MD5
08ae527056ef16ec681d3721fe57614e
Sha1
2290185c76dc16260b05eea8ff5025354376b59d
Base64
65Wo

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB568';
console.log(char);  // Output: 땨

Java:

char c = '\uB568';
System.out.println(c);  // Output: 땨

JSON:

{"text": "\uB568"}  // Value: 땨

Python:

char = '\uB568'
print(char)  # Output: 땨

Perl:

my $char = "\x{B568}";
print $char;  # Output: 땨

PHP:

$char = "\x{B568}";
echo $char;  // Output: 땨

Ruby:

char = "\u{B568}"
puts char  # Output: 땨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46440;</p>  <!-- Display: 땨 -->

HTML Hexadecimal:

<p>HTML hex: &#xB568;</p>  <!-- Display: 땨 -->

URL Encoding:

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

Encodings

MD5:

08ae527056ef16ec681d3721fe57614e

SHA1:

2290185c76dc16260b05eea8ff5025354376b59d

Base64:

65Wo