C:
char c = '\uC8EB';
printf("%c\n", c); // Output: 죫
JavaScript:
const char = '\uC8EB';
console.log(char); // Output: 죫
Java:
char c = '\uC8EB';
System.out.println(c); // Output: 죫
JSON:
{"text": "\uC8EB"} // Value: 죫
Python:
char = '\uC8EB'
print(char) # Output: 죫
Perl:
my $char = "\x{C8EB}";
print $char; # Output: 죫
PHP:
$char = "\x{C8EB}";
echo $char; // Output: 죫
Ruby:
char = "\u{C8EB}"
puts char # Output: 죫
Rust:
let c = '\u{C8EB}';
println!("{}", c); // Output: 죫
Go:
char := '\uC8EB'
fmt.Printf("%c\n", char) // Output: 죫
CSS:
/* CSS content property */
.element::before {
content: "\00C8EB"; /* 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%AB
MD5:
444ebfe3fd0c7ffa21ef5c50e81abef0
SHA1:
1b33bf87a8335239fee2f49fd1e4398b372eb769
Base64:
7KOr