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