C:
char c = '\u228B';
printf("%c\n", c); // Output: ⊋
JavaScript:
const char = '\u228B';
console.log(char); // Output: ⊋
Java:
char c = '\u228B';
System.out.println(c); // Output: ⊋
JSON:
{"text": "\u228B"} // Value: ⊋
Python:
char = '\u228B'
print(char) # Output: ⊋
Perl:
my $char = "\x{228B}";
print $char; # Output: ⊋
PHP:
$char = "\x{228B}";
echo $char; // Output: ⊋
Ruby:
char = "\u{228B}"
puts char # Output: ⊋
Rust:
let c = '\u{228B}';
println!("{}", c); // Output: ⊋
Go:
char := '\u228B'
fmt.Printf("%c\n", char) // Output: ⊋
CSS:
/* CSS content property */
.element::before {
content: "\00228B"; /* 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%8B
MD5:
33ab96caad74d43743e3a510ee626cb1
SHA1:
48b052e00cff9168a86a91d0a720d2886e92180c
Base64:
4oqL