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