C:
char c = '\u2289';
printf("%c\n", c); // Output: ⊉
JavaScript:
const char = '\u2289';
console.log(char); // Output: ⊉
Java:
char c = '\u2289';
System.out.println(c); // Output: ⊉
JSON:
{"text": "\u2289"} // Value: ⊉
Python:
char = '\u2289'
print(char) # Output: ⊉
Perl:
my $char = "\x{2289}";
print $char; # Output: ⊉
PHP:
$char = "\x{2289}";
echo $char; // Output: ⊉
Ruby:
char = "\u{2289}"
puts char # Output: ⊉
Rust:
let c = '\u{2289}';
println!("{}", c); // Output: ⊉
Go:
char := '\u2289'
fmt.Printf("%c\n", char) // Output: ⊉
CSS:
/* CSS content property */
.element::before {
content: "\002289"; /* 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%89
MD5:
11570d0788393774704db4d251a4ceda
SHA1:
5ab7c63a43672ca11039be5c073367c9a294431c
Base64:
4oqJ