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