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