Unicode Finder

"쫫" U+CAEB(HANGUL SYLLABLE JJWAS)

U+CAEB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJWAS

Programming

C
\uCAEB
JavaScript
\uCAEB
Java
\uCAEB
Json
\uCAEB
Python
\uCAEB
Perl
\x{CAEB}
PHP
\x{CAEB}
Ruby
\u{CAEB}
Rust
\u{CAEB}
Go
\uCAEB

Web

CSS
\00CAEB
HtmlDecimal
쫫
HtmlHexadecimal
쫫
Url
%EC%AB%AB

Code

MD5
6c520731a186d3d5e2163955b675f67f
Sha1
35d1a6be077ebb634c2438e55b9848f1ef9de018
Base64
7Kur

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCAEB';
console.log(char);  // Output: 쫫

Java:

char c = '\uCAEB';
System.out.println(c);  // Output: 쫫

JSON:

{"text": "\uCAEB"}  // Value: 쫫

Python:

char = '\uCAEB'
print(char)  # Output: 쫫

Perl:

my $char = "\x{CAEB}";
print $char;  # Output: 쫫

PHP:

$char = "\x{CAEB}";
echo $char;  // Output: 쫫

Ruby:

char = "\u{CAEB}"
puts char  # Output: 쫫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51947;</p>  <!-- Display: 쫫 -->

HTML Hexadecimal:

<p>HTML hex: &#xCAEB;</p>  <!-- Display: 쫫 -->

URL Encoding:

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

Encodings

MD5:

6c520731a186d3d5e2163955b675f67f

SHA1:

35d1a6be077ebb634c2438e55b9848f1ef9de018

Base64:

7Kur