C:
char c = '\uCF97';
printf("%c\n", c); // Output: 쾗
JavaScript:
const char = '\uCF97';
console.log(char); // Output: 쾗
Java:
char c = '\uCF97';
System.out.println(c); // Output: 쾗
JSON:
{"text": "\uCF97"} // Value: 쾗
Python:
char = '\uCF97'
print(char) # Output: 쾗
Perl:
my $char = "\x{CF97}";
print $char; # Output: 쾗
PHP:
$char = "\x{CF97}";
echo $char; // Output: 쾗
Ruby:
char = "\u{CF97}"
puts char # Output: 쾗
Rust:
let c = '\u{CF97}';
println!("{}", c); // Output: 쾗
Go:
char := '\uCF97'
fmt.Printf("%c\n", char) // Output: 쾗
CSS:
/* CSS content property */
.element::before {
content: "\00CF97"; /* 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%97
MD5:
68e2df066d822d2171f59ec5122c40b2
SHA1:
6f669f3617d7a15e16b67e06a12bd29f509145c8
Base64:
7L6X