C:
char c = '\u2281';
printf("%c\n", c); // Output: ⊁
JavaScript:
const char = '\u2281';
console.log(char); // Output: ⊁
Java:
char c = '\u2281';
System.out.println(c); // Output: ⊁
JSON:
{"text": "\u2281"} // Value: ⊁
Python:
char = '\u2281'
print(char) # Output: ⊁
Perl:
my $char = "\x{2281}";
print $char; # Output: ⊁
PHP:
$char = "\x{2281}";
echo $char; // Output: ⊁
Ruby:
char = "\u{2281}"
puts char # Output: ⊁
Rust:
let c = '\u{2281}';
println!("{}", c); // Output: ⊁
Go:
char := '\u2281'
fmt.Printf("%c\n", char) // Output: ⊁
CSS:
/* CSS content property */
.element::before {
content: "\002281"; /* 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%81
MD5:
3709483b54a9c65793ea8886ecdf6ef6
SHA1:
05d1b4f1874318f0a962ac20a30783f436aa0a4b
Base64:
4oqB