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