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