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