C:
char c = '\u2361';
printf("%c\n", c); // Output: ⍡
JavaScript:
const char = '\u2361';
console.log(char); // Output: ⍡
Java:
char c = '\u2361';
System.out.println(c); // Output: ⍡
JSON:
{"text": "\u2361"} // Value: ⍡
Python:
char = '\u2361'
print(char) # Output: ⍡
Perl:
my $char = "\x{2361}";
print $char; # Output: ⍡
PHP:
$char = "\x{2361}";
echo $char; // Output: ⍡
Ruby:
char = "\u{2361}"
puts char # Output: ⍡
Rust:
let c = '\u{2361}';
println!("{}", c); // Output: ⍡
Go:
char := '\u2361'
fmt.Printf("%c\n", char) // Output: ⍡
CSS:
/* CSS content property */
.element::before {
content: "\002361"; /* 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%A1
MD5:
d7761ba5c97b7434c726380cc4cc2916
SHA1:
f673be8fc716629d82a7ae10e70e5526a436a228
Base64:
4o2h