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