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