C:
char c = '\u2A95';
printf("%c\n", c); // Output: ⪕
JavaScript:
const char = '\u2A95';
console.log(char); // Output: ⪕
Java:
char c = '\u2A95';
System.out.println(c); // Output: ⪕
JSON:
{"text": "\u2A95"} // Value: ⪕
Python:
char = '\u2A95'
print(char) # Output: ⪕
Perl:
my $char = "\x{2A95}";
print $char; # Output: ⪕
PHP:
$char = "\x{2A95}";
echo $char; // Output: ⪕
Ruby:
char = "\u{2A95}"
puts char # Output: ⪕
Rust:
let c = '\u{2A95}';
println!("{}", c); // Output: ⪕
Go:
char := '\u2A95'
fmt.Printf("%c\n", char) // Output: ⪕
CSS:
/* CSS content property */
.element::before {
content: "\002A95"; /* 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%AA%95
MD5:
de3b91086ff0a76a30d31640479b04e2
SHA1:
d8303d9cb56b9e84c1a277d0cd98e0205845586f
Base64:
4qqV