Unicode Finder

"쨫" U+CA2B(HANGUL SYLLABLE JJYAC)

U+CA2B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJYAC

Programming

C
\uCA2B
JavaScript
\uCA2B
Java
\uCA2B
Json
\uCA2B
Python
\uCA2B
Perl
\x{CA2B}
PHP
\x{CA2B}
Ruby
\u{CA2B}
Rust
\u{CA2B}
Go
\uCA2B

Web

CSS
\00CA2B
HtmlDecimal
쨫
HtmlHexadecimal
쨫
Url
%EC%A8%AB

Code

MD5
203132a404fce7787387b0eb39d35d9e
Sha1
70c02f9facaffa5cbea48fba606afa677c3a1fb5
Base64
7Kir

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCA2B';
console.log(char);  // Output: 쨫

Java:

char c = '\uCA2B';
System.out.println(c);  // Output: 쨫

JSON:

{"text": "\uCA2B"}  // Value: 쨫

Python:

char = '\uCA2B'
print(char)  # Output: 쨫

Perl:

my $char = "\x{CA2B}";
print $char;  # Output: 쨫

PHP:

$char = "\x{CA2B}";
echo $char;  // Output: 쨫

Ruby:

char = "\u{CA2B}"
puts char  # Output: 쨫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51755;</p>  <!-- Display: 쨫 -->

HTML Hexadecimal:

<p>HTML hex: &#xCA2B;</p>  <!-- Display: 쨫 -->

URL Encoding:

// 쨫 URL encoding
https://unicodefinder.com/search.php?query=%EC%A8%AB

Encodings

MD5:

203132a404fce7787387b0eb39d35d9e

SHA1:

70c02f9facaffa5cbea48fba606afa677c3a1fb5

Base64:

7Kir