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