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