Unicode Finder

"쩻" U+CA7B(HANGUL SYLLABLE JJES)

U+CA7B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJES

Programming

C
\uCA7B
JavaScript
\uCA7B
Java
\uCA7B
Json
\uCA7B
Python
\uCA7B
Perl
\x{CA7B}
PHP
\x{CA7B}
Ruby
\u{CA7B}
Rust
\u{CA7B}
Go
\uCA7B

Web

CSS
\00CA7B
HtmlDecimal
쩻
HtmlHexadecimal
쩻
Url
%EC%A9%BB

Code

MD5
94b321c8b5b0d5ab2f55119079371ed8
Sha1
8959898dd7f7c7281be10dbb2661131c23b612a2
Base64
7Km7

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCA7B';
console.log(char);  // Output: 쩻

Java:

char c = '\uCA7B';
System.out.println(c);  // Output: 쩻

JSON:

{"text": "\uCA7B"}  // Value: 쩻

Python:

char = '\uCA7B'
print(char)  # Output: 쩻

Perl:

my $char = "\x{CA7B}";
print $char;  # Output: 쩻

PHP:

$char = "\x{CA7B}";
echo $char;  // Output: 쩻

Ruby:

char = "\u{CA7B}"
puts char  # Output: 쩻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51835;</p>  <!-- Display: 쩻 -->

HTML Hexadecimal:

<p>HTML hex: &#xCA7B;</p>  <!-- Display: 쩻 -->

URL Encoding:

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

Encodings

MD5:

94b321c8b5b0d5ab2f55119079371ed8

SHA1:

8959898dd7f7c7281be10dbb2661131c23b612a2

Base64:

7Km7