C:
char c = '\u219B';
printf("%c\n", c); // Output: ↛
JavaScript:
const char = '\u219B';
console.log(char); // Output: ↛
Java:
char c = '\u219B';
System.out.println(c); // Output: ↛
JSON:
{"text": "\u219B"} // Value: ↛
Python:
char = '\u219B'
print(char) # Output: ↛
Perl:
my $char = "\x{219B}";
print $char; # Output: ↛
PHP:
$char = "\x{219B}";
echo $char; // Output: ↛
Ruby:
char = "\u{219B}"
puts char # Output: ↛
Rust:
let c = '\u{219B}';
println!("{}", c); // Output: ↛
Go:
char := '\u219B'
fmt.Printf("%c\n", char) // Output: ↛
CSS:
/* CSS content property */
.element::before {
content: "\00219B"; /* 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%86%9B
MD5:
375ef9e5f8d0ec06ae77909f8a2ce457
SHA1:
4d6794fa7d071ced119e7a69e4c52abb608497f8
Base64:
4oab