C:
char c = '\u2371';
printf("%c\n", c); // Output: ⍱
JavaScript:
const char = '\u2371';
console.log(char); // Output: ⍱
Java:
char c = '\u2371';
System.out.println(c); // Output: ⍱
JSON:
{"text": "\u2371"} // Value: ⍱
Python:
char = '\u2371'
print(char) # Output: ⍱
Perl:
my $char = "\x{2371}";
print $char; # Output: ⍱
PHP:
$char = "\x{2371}";
echo $char; // Output: ⍱
Ruby:
char = "\u{2371}"
puts char # Output: ⍱
Rust:
let c = '\u{2371}';
println!("{}", c); // Output: ⍱
Go:
char := '\u2371'
fmt.Printf("%c\n", char) // Output: ⍱
CSS:
/* CSS content property */
.element::before {
content: "\002371"; /* 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%B1
MD5:
3319c83b7f0521e832dfc76883e82dff
SHA1:
b4c3d29ecd98cb13126395d0e8faceadd8903c4b
Base64:
4o2x