C:
char c = '\u241B';
printf("%c\n", c); // Output: ␛
JavaScript:
const char = '\u241B';
console.log(char); // Output: ␛
Java:
char c = '\u241B';
System.out.println(c); // Output: ␛
JSON:
{"text": "\u241B"} // Value: ␛
Python:
char = '\u241B'
print(char) # Output: ␛
Perl:
my $char = "\x{241B}";
print $char; # Output: ␛
PHP:
$char = "\x{241B}";
echo $char; // Output: ␛
Ruby:
char = "\u{241B}"
puts char # Output: ␛
Rust:
let c = '\u{241B}';
println!("{}", c); // Output: ␛
Go:
char := '\u241B'
fmt.Printf("%c\n", char) // Output: ␛
CSS:
/* CSS content property */
.element::before {
content: "\00241B"; /* 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%90%9B
MD5:
feeb8934722a7679005e08beb6719ceb
SHA1:
183daf0cf062dea9842049f70e40fe8ebbfa1c61
Base64:
4pCb