C:
char c = '\uC266';
printf("%c\n", c); // Output: 쉦
JavaScript:
const char = '\uC266';
console.log(char); // Output: 쉦
Java:
char c = '\uC266';
System.out.println(c); // Output: 쉦
JSON:
{"text": "\uC266"} // Value: 쉦
Python:
char = '\uC266'
print(char) # Output: 쉦
Perl:
my $char = "\x{C266}";
print $char; # Output: 쉦
PHP:
$char = "\x{C266}";
echo $char; // Output: 쉦
Ruby:
char = "\u{C266}"
puts char # Output: 쉦
Rust:
let c = '\u{C266}';
println!("{}", c); // Output: 쉦
Go:
char := '\uC266'
fmt.Printf("%c\n", char) // Output: 쉦
CSS:
/* CSS content property */
.element::before {
content: "\00C266"; /* 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%89%A6
MD5:
3f68f944cfa4016edd529b8ef71d02a3
SHA1:
2907e98839e0cf0d59f4e6afa30a375c03c2ded7
Base64:
7Imm