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