Unicode Finder

"쨋" U+CA0B(HANGUL SYLLABLE JJAES)

U+CA0B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJAES

Programming

C
\uCA0B
JavaScript
\uCA0B
Java
\uCA0B
Json
\uCA0B
Python
\uCA0B
Perl
\x{CA0B}
PHP
\x{CA0B}
Ruby
\u{CA0B}
Rust
\u{CA0B}
Go
\uCA0B

Web

CSS
\00CA0B
HtmlDecimal
쨋
HtmlHexadecimal
쨋
Url
%EC%A8%8B

Code

MD5
bb45ebf73855575dbb252aaee778a3fb
Sha1
2f2216673ceba0ffb72f4195835a843ddaae4d04
Base64
7KiL

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCA0B';
console.log(char);  // Output: 쨋

Java:

char c = '\uCA0B';
System.out.println(c);  // Output: 쨋

JSON:

{"text": "\uCA0B"}  // Value: 쨋

Python:

char = '\uCA0B'
print(char)  # Output: 쨋

Perl:

my $char = "\x{CA0B}";
print $char;  # Output: 쨋

PHP:

$char = "\x{CA0B}";
echo $char;  // Output: 쨋

Ruby:

char = "\u{CA0B}"
puts char  # Output: 쨋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51723;</p>  <!-- Display: 쨋 -->

HTML Hexadecimal:

<p>HTML hex: &#xCA0B;</p>  <!-- Display: 쨋 -->

URL Encoding:

// 쨋 URL encoding
https://unicodefinder.com/search.php?query=%EC%A8%8B

Encodings

MD5:

bb45ebf73855575dbb252aaee778a3fb

SHA1:

2f2216673ceba0ffb72f4195835a843ddaae4d04

Base64:

7KiL