Unicode Finder

"쩫" U+CA6B(HANGUL SYLLABLE JJEGS)

U+CA6B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJEGS

Programming

C
\uCA6B
JavaScript
\uCA6B
Java
\uCA6B
Json
\uCA6B
Python
\uCA6B
Perl
\x{CA6B}
PHP
\x{CA6B}
Ruby
\u{CA6B}
Rust
\u{CA6B}
Go
\uCA6B

Web

CSS
\00CA6B
HtmlDecimal
쩫
HtmlHexadecimal
쩫
Url
%EC%A9%AB

Code

MD5
e3adfd3022b533f1a1613d9fa568595f
Sha1
6f020dd368b4bae5ed0c6f9b9c103c0f431bafcc
Base64
7Kmr

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCA6B';
console.log(char);  // Output: 쩫

Java:

char c = '\uCA6B';
System.out.println(c);  // Output: 쩫

JSON:

{"text": "\uCA6B"}  // Value: 쩫

Python:

char = '\uCA6B'
print(char)  # Output: 쩫

Perl:

my $char = "\x{CA6B}";
print $char;  # Output: 쩫

PHP:

$char = "\x{CA6B}";
echo $char;  // Output: 쩫

Ruby:

char = "\u{CA6B}"
puts char  # Output: 쩫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51819;</p>  <!-- Display: 쩫 -->

HTML Hexadecimal:

<p>HTML hex: &#xCA6B;</p>  <!-- Display: 쩫 -->

URL Encoding:

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

Encodings

MD5:

e3adfd3022b533f1a1613d9fa568595f

SHA1:

6f020dd368b4bae5ed0c6f9b9c103c0f431bafcc

Base64:

7Kmr