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