C:
char c = '\uC0CA';
printf("%c\n", c); // Output: 샊
JavaScript:
const char = '\uC0CA';
console.log(char); // Output: 샊
Java:
char c = '\uC0CA';
System.out.println(c); // Output: 샊
JSON:
{"text": "\uC0CA"} // Value: 샊
Python:
char = '\uC0CA'
print(char) # Output: 샊
Perl:
my $char = "\x{C0CA}";
print $char; # Output: 샊
PHP:
$char = "\x{C0CA}";
echo $char; // Output: 샊
Ruby:
char = "\u{C0CA}"
puts char # Output: 샊
Rust:
let c = '\u{C0CA}';
println!("{}", c); // Output: 샊
Go:
char := '\uC0CA'
fmt.Printf("%c\n", char) // Output: 샊
CSS:
/* CSS content property */
.element::before {
content: "\00C0CA"; /* 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%83%8A
MD5:
3dad4f790e5c9b867cbee2182d0e5f20
SHA1:
fcd8aa321180e3c2741ef11c8fd6379fa18e67de
Base64:
7IOK