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