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