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