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