C:
char c = '\uCF86';
printf("%c\n", c); // Output: 쾆
JavaScript:
const char = '\uCF86';
console.log(char); // Output: 쾆
Java:
char c = '\uCF86';
System.out.println(c); // Output: 쾆
JSON:
{"text": "\uCF86"} // Value: 쾆
Python:
char = '\uCF86'
print(char) # Output: 쾆
Perl:
my $char = "\x{CF86}";
print $char; # Output: 쾆
PHP:
$char = "\x{CF86}";
echo $char; // Output: 쾆
Ruby:
char = "\u{CF86}"
puts char # Output: 쾆
Rust:
let c = '\u{CF86}';
println!("{}", c); // Output: 쾆
Go:
char := '\uCF86'
fmt.Printf("%c\n", char) // Output: 쾆
CSS:
/* CSS content property */
.element::before {
content: "\00CF86"; /* 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%86
MD5:
256a22a1e08a723b0a04e87af0827422
SHA1:
77a6d43a1f306b64fe34c211e3df8e7bfad4e41c
Base64:
7L6G