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