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