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