C:
char c = '\uC0BA';
printf("%c\n", c); // Output: 삺
JavaScript:
const char = '\uC0BA';
console.log(char); // Output: 삺
Java:
char c = '\uC0BA';
System.out.println(c); // Output: 삺
JSON:
{"text": "\uC0BA"} // Value: 삺
Python:
char = '\uC0BA'
print(char) # Output: 삺
Perl:
my $char = "\x{C0BA}";
print $char; # Output: 삺
PHP:
$char = "\x{C0BA}";
echo $char; // Output: 삺
Ruby:
char = "\u{C0BA}"
puts char # Output: 삺
Rust:
let c = '\u{C0BA}';
println!("{}", c); // Output: 삺
Go:
char := '\uC0BA'
fmt.Printf("%c\n", char) // Output: 삺
CSS:
/* CSS content property */
.element::before {
content: "\00C0BA"; /* 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%82%BA
MD5:
2270ac1e08b76e9e48561009bc4c2fd1
SHA1:
e02fb9bf84e85358d62910150c88b17ff747d5b2
Base64:
7IK6