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