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