C:
char c = '\uC0AF';
printf("%c\n", c); // Output: 삯
JavaScript:
const char = '\uC0AF';
console.log(char); // Output: 삯
Java:
char c = '\uC0AF';
System.out.println(c); // Output: 삯
JSON:
{"text": "\uC0AF"} // Value: 삯
Python:
char = '\uC0AF'
print(char) # Output: 삯
Perl:
my $char = "\x{C0AF}";
print $char; # Output: 삯
PHP:
$char = "\x{C0AF}";
echo $char; // Output: 삯
Ruby:
char = "\u{C0AF}"
puts char # Output: 삯
Rust:
let c = '\u{C0AF}';
println!("{}", c); // Output: 삯
Go:
char := '\uC0AF'
fmt.Printf("%c\n", char) // Output: 삯
CSS:
/* CSS content property */
.element::before {
content: "\00C0AF"; /* 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%AF
MD5:
04af32ae7bffdb52710fbf7b9b2d2ffc
SHA1:
5c4ceb7b34ffcf05a6f53485db6d8708ca0b5f2b
Base64:
7IKv