C:
char c = '\uCA99';
printf("%c\n", c); // Output: 쪙
JavaScript:
const char = '\uCA99';
console.log(char); // Output: 쪙
Java:
char c = '\uCA99';
System.out.println(c); // Output: 쪙
JSON:
{"text": "\uCA99"} // Value: 쪙
Python:
char = '\uCA99'
print(char) # Output: 쪙
Perl:
my $char = "\x{CA99}";
print $char; # Output: 쪙
PHP:
$char = "\x{CA99}";
echo $char; // Output: 쪙
Ruby:
char = "\u{CA99}"
puts char # Output: 쪙
Rust:
let c = '\u{CA99}';
println!("{}", c); // Output: 쪙
Go:
char := '\uCA99'
fmt.Printf("%c\n", char) // Output: 쪙
CSS:
/* CSS content property */
.element::before {
content: "\00CA99"; /* 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%AA%99
MD5:
35ac02e335ed9405e6816ecbd0fc74a9
SHA1:
9cd47b5083ae1e52f3e150133199b0ce5174d284
Base64:
7KqZ