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