Unicode Finder

"쫗" U+CAD7(HANGUL SYLLABLE JJOH)

U+CAD7
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJOH

Programming

C
\uCAD7
JavaScript
\uCAD7
Java
\uCAD7
Json
\uCAD7
Python
\uCAD7
Perl
\x{CAD7}
PHP
\x{CAD7}
Ruby
\u{CAD7}
Rust
\u{CAD7}
Go
\uCAD7

Web

CSS
\00CAD7
HtmlDecimal
쫗
HtmlHexadecimal
쫗
Url
%EC%AB%97

Code

MD5
8c7fab477cb451c227e2d24ad2091e38
Sha1
370fbe357cb94dcbe1d9138f80340484acbd87cc
Base64
7KuX

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCAD7';
console.log(char);  // Output: 쫗

Java:

char c = '\uCAD7';
System.out.println(c);  // Output: 쫗

JSON:

{"text": "\uCAD7"}  // Value: 쫗

Python:

char = '\uCAD7'
print(char)  # Output: 쫗

Perl:

my $char = "\x{CAD7}";
print $char;  # Output: 쫗

PHP:

$char = "\x{CAD7}";
echo $char;  // Output: 쫗

Ruby:

char = "\u{CAD7}"
puts char  # Output: 쫗

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51927;</p>  <!-- Display: 쫗 -->

HTML Hexadecimal:

<p>HTML hex: &#xCAD7;</p>  <!-- Display: 쫗 -->

URL Encoding:

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

Encodings

MD5:

8c7fab477cb451c227e2d24ad2091e38

SHA1:

370fbe357cb94dcbe1d9138f80340484acbd87cc

Base64:

7KuX