C:
char c = '\u2340';
printf("%c\n", c); // Output: ⍀
JavaScript:
const char = '\u2340';
console.log(char); // Output: ⍀
Java:
char c = '\u2340';
System.out.println(c); // Output: ⍀
JSON:
{"text": "\u2340"} // Value: ⍀
Python:
char = '\u2340'
print(char) # Output: ⍀
Perl:
my $char = "\x{2340}";
print $char; # Output: ⍀
PHP:
$char = "\x{2340}";
echo $char; // Output: ⍀
Ruby:
char = "\u{2340}"
puts char # Output: ⍀
Rust:
let c = '\u{2340}';
println!("{}", c); // Output: ⍀
Go:
char := '\u2340'
fmt.Printf("%c\n", char) // Output: ⍀
CSS:
/* CSS content property */
.element::before {
content: "\002340"; /* 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%8D%80
MD5:
0744775674c1de78538d403aa7f31051
SHA1:
09fc78103ab74fe1cdf871e6a7965a11ab08c4c7
Base64:
4o2A