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