Unicode Finder

"쩭" U+CA6D(HANGUL SYLLABLE JJENJ)

U+CA6D
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJENJ

Programming

C
\uCA6D
JavaScript
\uCA6D
Java
\uCA6D
Json
\uCA6D
Python
\uCA6D
Perl
\x{CA6D}
PHP
\x{CA6D}
Ruby
\u{CA6D}
Rust
\u{CA6D}
Go
\uCA6D

Web

CSS
\00CA6D
HtmlDecimal
쩭
HtmlHexadecimal
쩭
Url
%EC%A9%AD

Code

MD5
549a72d9e0de69eff5d7b1b0a5231424
Sha1
fab7eecb787e7325ab84a979b5b0f3c0e9b8fbc7
Base64
7Kmt

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCA6D';
console.log(char);  // Output: 쩭

Java:

char c = '\uCA6D';
System.out.println(c);  // Output: 쩭

JSON:

{"text": "\uCA6D"}  // Value: 쩭

Python:

char = '\uCA6D'
print(char)  # Output: 쩭

Perl:

my $char = "\x{CA6D}";
print $char;  # Output: 쩭

PHP:

$char = "\x{CA6D}";
echo $char;  // Output: 쩭

Ruby:

char = "\u{CA6D}"
puts char  # Output: 쩭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51821;</p>  <!-- Display: 쩭 -->

HTML Hexadecimal:

<p>HTML hex: &#xCA6D;</p>  <!-- Display: 쩭 -->

URL Encoding:

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

Encodings

MD5:

549a72d9e0de69eff5d7b1b0a5231424

SHA1:

fab7eecb787e7325ab84a979b5b0f3c0e9b8fbc7

Base64:

7Kmt