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