C:
char c = '\u2290';
printf("%c\n", c); // Output: ⊐
JavaScript:
const char = '\u2290';
console.log(char); // Output: ⊐
Java:
char c = '\u2290';
System.out.println(c); // Output: ⊐
JSON:
{"text": "\u2290"} // Value: ⊐
Python:
char = '\u2290'
print(char) # Output: ⊐
Perl:
my $char = "\x{2290}";
print $char; # Output: ⊐
PHP:
$char = "\x{2290}";
echo $char; // Output: ⊐
Ruby:
char = "\u{2290}"
puts char # Output: ⊐
Rust:
let c = '\u{2290}';
println!("{}", c); // Output: ⊐
Go:
char := '\u2290'
fmt.Printf("%c\n", char) // Output: ⊐
CSS:
/* CSS content property */
.element::before {
content: "\002290"; /* 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%90
MD5:
2fb5507b9cbaf540d632debd90dc251e
SHA1:
6c19c99f717372be8d5d1f315bfac2dbe4ab9312
Base64:
4oqQ