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