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