Unicode Finder

"쩧" U+CA67(HANGUL SYLLABLE JJEOH)

U+CA67
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJEOH

Programming

C
\uCA67
JavaScript
\uCA67
Java
\uCA67
Json
\uCA67
Python
\uCA67
Perl
\x{CA67}
PHP
\x{CA67}
Ruby
\u{CA67}
Rust
\u{CA67}
Go
\uCA67

Web

CSS
\00CA67
HtmlDecimal
쩧
HtmlHexadecimal
쩧
Url
%EC%A9%A7

Code

MD5
61c68703df7da3557cdffe5d770d4266
Sha1
1a926da8db9d9a55e1ba7614f60034cea39e64ef
Base64
7Kmn

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCA67';
console.log(char);  // Output: 쩧

Java:

char c = '\uCA67';
System.out.println(c);  // Output: 쩧

JSON:

{"text": "\uCA67"}  // Value: 쩧

Python:

char = '\uCA67'
print(char)  # Output: 쩧

Perl:

my $char = "\x{CA67}";
print $char;  # Output: 쩧

PHP:

$char = "\x{CA67}";
echo $char;  // Output: 쩧

Ruby:

char = "\u{CA67}"
puts char  # Output: 쩧

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51815;</p>  <!-- Display: 쩧 -->

HTML Hexadecimal:

<p>HTML hex: &#xCA67;</p>  <!-- Display: 쩧 -->

URL Encoding:

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

Encodings

MD5:

61c68703df7da3557cdffe5d770d4266

SHA1:

1a926da8db9d9a55e1ba7614f60034cea39e64ef

Base64:

7Kmn