Unicode Finder

"쩙" U+CA59(HANGUL SYLLABLE JJEOLT)

U+CA59
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJEOLT

Programming

C
\uCA59
JavaScript
\uCA59
Java
\uCA59
Json
\uCA59
Python
\uCA59
Perl
\x{CA59}
PHP
\x{CA59}
Ruby
\u{CA59}
Rust
\u{CA59}
Go
\uCA59

Web

CSS
\00CA59
HtmlDecimal
쩙
HtmlHexadecimal
쩙
Url
%EC%A9%99

Code

MD5
21cf64e8765826e018a5313563d57822
Sha1
6b77026e3282164b0e5f50595694f8c0096b7732
Base64
7KmZ

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCA59';
console.log(char);  // Output: 쩙

Java:

char c = '\uCA59';
System.out.println(c);  // Output: 쩙

JSON:

{"text": "\uCA59"}  // Value: 쩙

Python:

char = '\uCA59'
print(char)  # Output: 쩙

Perl:

my $char = "\x{CA59}";
print $char;  # Output: 쩙

PHP:

$char = "\x{CA59}";
echo $char;  // Output: 쩙

Ruby:

char = "\u{CA59}"
puts char  # Output: 쩙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51801;</p>  <!-- Display: 쩙 -->

HTML Hexadecimal:

<p>HTML hex: &#xCA59;</p>  <!-- Display: 쩙 -->

URL Encoding:

// 쩙 URL encoding
https://unicodefinder.com/search.php?query=%EC%A9%99

Encodings

MD5:

21cf64e8765826e018a5313563d57822

SHA1:

6b77026e3282164b0e5f50595694f8c0096b7732

Base64:

7KmZ