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