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