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