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