Unicode Finder

"쨻" U+CA3B(HANGUL SYLLABLE JJYAELB)

U+CA3B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJYAELB

Programming

C
\uCA3B
JavaScript
\uCA3B
Java
\uCA3B
Json
\uCA3B
Python
\uCA3B
Perl
\x{CA3B}
PHP
\x{CA3B}
Ruby
\u{CA3B}
Rust
\u{CA3B}
Go
\uCA3B

Web

CSS
\00CA3B
HtmlDecimal
쨻
HtmlHexadecimal
쨻
Url
%EC%A8%BB

Code

MD5
7d22369d37452c1c3e2f3be00bd10a8d
Sha1
7d9fe44d700f0bd99c3002e4ab375b029bde45d9
Base64
7Ki7

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCA3B';
console.log(char);  // Output: 쨻

Java:

char c = '\uCA3B';
System.out.println(c);  // Output: 쨻

JSON:

{"text": "\uCA3B"}  // Value: 쨻

Python:

char = '\uCA3B'
print(char)  # Output: 쨻

Perl:

my $char = "\x{CA3B}";
print $char;  # Output: 쨻

PHP:

$char = "\x{CA3B}";
echo $char;  // Output: 쨻

Ruby:

char = "\u{CA3B}"
puts char  # Output: 쨻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51771;</p>  <!-- Display: 쨻 -->

HTML Hexadecimal:

<p>HTML hex: &#xCA3B;</p>  <!-- Display: 쨻 -->

URL Encoding:

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

Encodings

MD5:

7d22369d37452c1c3e2f3be00bd10a8d

SHA1:

7d9fe44d700f0bd99c3002e4ab375b029bde45d9

Base64:

7Ki7