C:
char c = '\uCF87';
printf("%c\n", c); // Output: 쾇
JavaScript:
const char = '\uCF87';
console.log(char); // Output: 쾇
Java:
char c = '\uCF87';
System.out.println(c); // Output: 쾇
JSON:
{"text": "\uCF87"} // Value: 쾇
Python:
char = '\uCF87'
print(char) # Output: 쾇
Perl:
my $char = "\x{CF87}";
print $char; # Output: 쾇
PHP:
$char = "\x{CF87}";
echo $char; // Output: 쾇
Ruby:
char = "\u{CF87}"
puts char # Output: 쾇
Rust:
let c = '\u{CF87}';
println!("{}", c); // Output: 쾇
Go:
char := '\uCF87'
fmt.Printf("%c\n", char) // Output: 쾇
CSS:
/* CSS content property */
.element::before {
content: "\00CF87"; /* 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%87
MD5:
f231ab6886a4181bba6bb7794753915b
SHA1:
8176491760fd6d016dc303302dde27dbf26c5620
Base64:
7L6H