C:
char c = '\uC95A';
printf("%c\n", c); // Output: 쥚
JavaScript:
const char = '\uC95A';
console.log(char); // Output: 쥚
Java:
char c = '\uC95A';
System.out.println(c); // Output: 쥚
JSON:
{"text": "\uC95A"} // Value: 쥚
Python:
char = '\uC95A'
print(char) # Output: 쥚
Perl:
my $char = "\x{C95A}";
print $char; # Output: 쥚
PHP:
$char = "\x{C95A}";
echo $char; // Output: 쥚
Ruby:
char = "\u{C95A}"
puts char # Output: 쥚
Rust:
let c = '\u{C95A}';
println!("{}", c); // Output: 쥚
Go:
char := '\uC95A'
fmt.Printf("%c\n", char) // Output: 쥚
CSS:
/* CSS content property */
.element::before {
content: "\00C95A"; /* 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%A5%9A
MD5:
a46eeed2f71bd9d1e6cff8dafebd7f87
SHA1:
d603cc040cbc21223f8ee810dc52b916211d3045
Base64:
7KWa