C:
char c = '\uC1E8';
printf("%c\n", c); // Output: 쇨
JavaScript:
const char = '\uC1E8';
console.log(char); // Output: 쇨
Java:
char c = '\uC1E8';
System.out.println(c); // Output: 쇨
JSON:
{"text": "\uC1E8"} // Value: 쇨
Python:
char = '\uC1E8'
print(char) # Output: 쇨
Perl:
my $char = "\x{C1E8}";
print $char; # Output: 쇨
PHP:
$char = "\x{C1E8}";
echo $char; // Output: 쇨
Ruby:
char = "\u{C1E8}"
puts char # Output: 쇨
Rust:
let c = '\u{C1E8}';
println!("{}", c); // Output: 쇨
Go:
char := '\uC1E8'
fmt.Printf("%c\n", char) // Output: 쇨
CSS:
/* CSS content property */
.element::before {
content: "\00C1E8"; /* 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%87%A8
MD5:
551697df2eb9b5e05ddf1285f7193afc
SHA1:
b3287612922e449aabc1242c11dea26397b4e5ed
Base64:
7Ieo