C:
char c = '\u2401';
printf("%c\n", c); // Output: ␁
JavaScript:
const char = '\u2401';
console.log(char); // Output: ␁
Java:
char c = '\u2401';
System.out.println(c); // Output: ␁
JSON:
{"text": "\u2401"} // Value: ␁
Python:
char = '\u2401'
print(char) # Output: ␁
Perl:
my $char = "\x{2401}";
print $char; # Output: ␁
PHP:
$char = "\x{2401}";
echo $char; // Output: ␁
Ruby:
char = "\u{2401}"
puts char # Output: ␁
Rust:
let c = '\u{2401}';
println!("{}", c); // Output: ␁
Go:
char := '\u2401'
fmt.Printf("%c\n", char) // Output: ␁
CSS:
/* CSS content property */
.element::before {
content: "\002401"; /* 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%81
MD5:
27b66b13e1a1ec9a8444cad4e94e3bad
SHA1:
494a79cd8e2ae45a9bf6b9477722012466794e83
Base64:
4pCB