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