C:
char c = '\uCF98';
printf("%c\n", c); // Output: 쾘
JavaScript:
const char = '\uCF98';
console.log(char); // Output: 쾘
Java:
char c = '\uCF98';
System.out.println(c); // Output: 쾘
JSON:
{"text": "\uCF98"} // Value: 쾘
Python:
char = '\uCF98'
print(char) # Output: 쾘
Perl:
my $char = "\x{CF98}";
print $char; # Output: 쾘
PHP:
$char = "\x{CF98}";
echo $char; // Output: 쾘
Ruby:
char = "\u{CF98}"
puts char # Output: 쾘
Rust:
let c = '\u{CF98}';
println!("{}", c); // Output: 쾘
Go:
char := '\uCF98'
fmt.Printf("%c\n", char) // Output: 쾘
CSS:
/* CSS content property */
.element::before {
content: "\00CF98"; /* 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%BE%98
MD5:
0a73ecd2db5e19e269118575c6bf1cd2
SHA1:
f86f68d07454265fdc7b6971fc868f7fae25e50f
Base64:
7L6Y