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