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