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