C:
char c = '\uC8EE';
printf("%c\n", c); // Output: 죮
JavaScript:
const char = '\uC8EE';
console.log(char); // Output: 죮
Java:
char c = '\uC8EE';
System.out.println(c); // Output: 죮
JSON:
{"text": "\uC8EE"} // Value: 죮
Python:
char = '\uC8EE'
print(char) # Output: 죮
Perl:
my $char = "\x{C8EE}";
print $char; # Output: 죮
PHP:
$char = "\x{C8EE}";
echo $char; // Output: 죮
Ruby:
char = "\u{C8EE}"
puts char # Output: 죮
Rust:
let c = '\u{C8EE}';
println!("{}", c); // Output: 죮
Go:
char := '\uC8EE'
fmt.Printf("%c\n", char) // Output: 죮
CSS:
/* CSS content property */
.element::before {
content: "\00C8EE"; /* 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%A3%AE
MD5:
45c1ffd414236fd2df8129d9aff7f457
SHA1:
88bec5ebeb5c1d95ff6934397afd70f42408a564
Base64:
7KOu