C:
char c = '\uCB63';
printf("%c\n", c); // Output: 쭣
JavaScript:
const char = '\uCB63';
console.log(char); // Output: 쭣
Java:
char c = '\uCB63';
System.out.println(c); // Output: 쭣
JSON:
{"text": "\uCB63"} // Value: 쭣
Python:
char = '\uCB63'
print(char) # Output: 쭣
Perl:
my $char = "\x{CB63}";
print $char; # Output: 쭣
PHP:
$char = "\x{CB63}";
echo $char; // Output: 쭣
Ruby:
char = "\u{CB63}"
puts char # Output: 쭣
Rust:
let c = '\u{CB63}';
println!("{}", c); // Output: 쭣
Go:
char := '\uCB63'
fmt.Printf("%c\n", char) // Output: 쭣
CSS:
/* CSS content property */
.element::before {
content: "\00CB63"; /* Display: 쭣 */
}
HTML Decimal:
<p>HTML decimal: 쭣</p> <!-- Display: 쭣 -->
HTML Hexadecimal:
<p>HTML hex: 쭣</p> <!-- Display: 쭣 -->
URL Encoding:
// 쭣 URL encoding
https://unicodefinder.com/search.php?query=%EC%AD%A3
MD5:
10d959ba2dab1084dd6c84138cbcbd03
SHA1:
27d19533ed20b59f7ebe6951d537995312c84df3
Base64:
7K2j