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