C:
char c = '\u2364';
printf("%c\n", c); // Output: ⍤
JavaScript:
const char = '\u2364';
console.log(char); // Output: ⍤
Java:
char c = '\u2364';
System.out.println(c); // Output: ⍤
JSON:
{"text": "\u2364"} // Value: ⍤
Python:
char = '\u2364'
print(char) # Output: ⍤
Perl:
my $char = "\x{2364}";
print $char; # Output: ⍤
PHP:
$char = "\x{2364}";
echo $char; // Output: ⍤
Ruby:
char = "\u{2364}"
puts char # Output: ⍤
Rust:
let c = '\u{2364}';
println!("{}", c); // Output: ⍤
Go:
char := '\u2364'
fmt.Printf("%c\n", char) // Output: ⍤
CSS:
/* CSS content property */
.element::before {
content: "\002364"; /* 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%A4
MD5:
08ee4deb53c99f0414f2d87cabbb154a
SHA1:
c18be1e825f329465e546e9068c8ad5d57a7ef81
Base64:
4o2k