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