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