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