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