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