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