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