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