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