C:
char c = '\u20A9';
printf("%c\n", c); // Output: ₩
JavaScript:
const char = '\u20A9';
console.log(char); // Output: ₩
Java:
char c = '\u20A9';
System.out.println(c); // Output: ₩
JSON:
{"text": "\u20A9"} // Value: ₩
Python:
char = '\u20A9'
print(char) # Output: ₩
Perl:
my $char = "\x{20A9}";
print $char; # Output: ₩
PHP:
$char = "\x{20A9}";
echo $char; // Output: ₩
Ruby:
char = "\u{20A9}"
puts char # Output: ₩
Rust:
let c = '\u{20A9}';
println!("{}", c); // Output: ₩
Go:
char := '\u20A9'
fmt.Printf("%c\n", char) // Output: ₩
CSS:
/* CSS content property */
.element::before {
content: "\0020A9"; /* 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=%E2%82%A9
MD5:
221504459d13d6564dbe3c105b449780
SHA1:
a474739d78a0e4fba452f2172c4b7f408042a085
Base64:
4oKp