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