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