C:
char c = '\u2362';
printf("%c\n", c); // Output: ⍢
JavaScript:
const char = '\u2362';
console.log(char); // Output: ⍢
Java:
char c = '\u2362';
System.out.println(c); // Output: ⍢
JSON:
{"text": "\u2362"} // Value: ⍢
Python:
char = '\u2362'
print(char) # Output: ⍢
Perl:
my $char = "\x{2362}";
print $char; # Output: ⍢
PHP:
$char = "\x{2362}";
echo $char; // Output: ⍢
Ruby:
char = "\u{2362}"
puts char # Output: ⍢
Rust:
let c = '\u{2362}';
println!("{}", c); // Output: ⍢
Go:
char := '\u2362'
fmt.Printf("%c\n", char) // Output: ⍢
CSS:
/* CSS content property */
.element::before {
content: "\002362"; /* 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%A2
MD5:
d008d22288b4dd107ee1c8404635a051
SHA1:
6d9ac532049c47723e6f42615efc1ba71df0e5de
Base64:
4o2i