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