Unicode Finder

"쩛" U+CA5B(HANGUL SYLLABLE JJEOLH)

U+CA5B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJEOLH

Programming

C
\uCA5B
JavaScript
\uCA5B
Java
\uCA5B
Json
\uCA5B
Python
\uCA5B
Perl
\x{CA5B}
PHP
\x{CA5B}
Ruby
\u{CA5B}
Rust
\u{CA5B}
Go
\uCA5B

Web

CSS
\00CA5B
HtmlDecimal
쩛
HtmlHexadecimal
쩛
Url
%EC%A9%9B

Code

MD5
674c7d4102b0464885ab3ed66c6ff275
Sha1
e349526c6ea78d4a522e3586d750579efbc374e7
Base64
7Kmb

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCA5B';
console.log(char);  // Output: 쩛

Java:

char c = '\uCA5B';
System.out.println(c);  // Output: 쩛

JSON:

{"text": "\uCA5B"}  // Value: 쩛

Python:

char = '\uCA5B'
print(char)  # Output: 쩛

Perl:

my $char = "\x{CA5B}";
print $char;  # Output: 쩛

PHP:

$char = "\x{CA5B}";
echo $char;  // Output: 쩛

Ruby:

char = "\u{CA5B}"
puts char  # Output: 쩛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51803;</p>  <!-- Display: 쩛 -->

HTML Hexadecimal:

<p>HTML hex: &#xCA5B;</p>  <!-- Display: 쩛 -->

URL Encoding:

// 쩛 URL encoding
https://unicodefinder.com/search.php?query=%EC%A9%9B

Encodings

MD5:

674c7d4102b0464885ab3ed66c6ff275

SHA1:

e349526c6ea78d4a522e3586d750579efbc374e7

Base64:

7Kmb