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