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