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