Unicode Finder

"쪋" U+CA8B(HANGUL SYLLABLE JJYEOD)

U+CA8B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJYEOD

Programming

C
\uCA8B
JavaScript
\uCA8B
Java
\uCA8B
Json
\uCA8B
Python
\uCA8B
Perl
\x{CA8B}
PHP
\x{CA8B}
Ruby
\u{CA8B}
Rust
\u{CA8B}
Go
\uCA8B

Web

CSS
\00CA8B
HtmlDecimal
쪋
HtmlHexadecimal
쪋
Url
%EC%AA%8B

Code

MD5
ece7f855dedd77fc806d24377a6d8bbe
Sha1
16b3577ba62d6b13fdd9812c53227255a7b36f4a
Base64
7KqL

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCA8B';
console.log(char);  // Output: 쪋

Java:

char c = '\uCA8B';
System.out.println(c);  // Output: 쪋

JSON:

{"text": "\uCA8B"}  // Value: 쪋

Python:

char = '\uCA8B'
print(char)  # Output: 쪋

Perl:

my $char = "\x{CA8B}";
print $char;  # Output: 쪋

PHP:

$char = "\x{CA8B}";
echo $char;  // Output: 쪋

Ruby:

char = "\u{CA8B}"
puts char  # Output: 쪋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51851;</p>  <!-- Display: 쪋 -->

HTML Hexadecimal:

<p>HTML hex: &#xCA8B;</p>  <!-- Display: 쪋 -->

URL Encoding:

// 쪋 URL encoding
https://unicodefinder.com/search.php?query=%EC%AA%8B

Encodings

MD5:

ece7f855dedd77fc806d24377a6d8bbe

SHA1:

16b3577ba62d6b13fdd9812c53227255a7b36f4a

Base64:

7KqL