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