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