Unicode Finder

"쨝" U+CA1D(HANGUL SYLLABLE JJYALG)

U+CA1D
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJYALG

Programming

C
\uCA1D
JavaScript
\uCA1D
Java
\uCA1D
Json
\uCA1D
Python
\uCA1D
Perl
\x{CA1D}
PHP
\x{CA1D}
Ruby
\u{CA1D}
Rust
\u{CA1D}
Go
\uCA1D

Web

CSS
\00CA1D
HtmlDecimal
쨝
HtmlHexadecimal
쨝
Url
%EC%A8%9D

Code

MD5
745d1efee85fa140924b5fdb12861483
Sha1
1114987a31388eb1682dd8dbeb703199c23681c9
Base64
7Kid

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCA1D';
console.log(char);  // Output: 쨝

Java:

char c = '\uCA1D';
System.out.println(c);  // Output: 쨝

JSON:

{"text": "\uCA1D"}  // Value: 쨝

Python:

char = '\uCA1D'
print(char)  # Output: 쨝

Perl:

my $char = "\x{CA1D}";
print $char;  # Output: 쨝

PHP:

$char = "\x{CA1D}";
echo $char;  // Output: 쨝

Ruby:

char = "\u{CA1D}"
puts char  # Output: 쨝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51741;</p>  <!-- Display: 쨝 -->

HTML Hexadecimal:

<p>HTML hex: &#xCA1D;</p>  <!-- Display: 쨝 -->

URL Encoding:

// 쨝 URL encoding
https://unicodefinder.com/search.php?query=%EC%A8%9D

Encodings

MD5:

745d1efee85fa140924b5fdb12861483

SHA1:

1114987a31388eb1682dd8dbeb703199c23681c9

Base64:

7Kid