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