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