C:
char c = '\u2404';
printf("%c\n", c); // Output: ␄
JavaScript:
const char = '\u2404';
console.log(char); // Output: ␄
Java:
char c = '\u2404';
System.out.println(c); // Output: ␄
JSON:
{"text": "\u2404"} // Value: ␄
Python:
char = '\u2404'
print(char) # Output: ␄
Perl:
my $char = "\x{2404}";
print $char; # Output: ␄
PHP:
$char = "\x{2404}";
echo $char; // Output: ␄
Ruby:
char = "\u{2404}"
puts char # Output: ␄
Rust:
let c = '\u{2404}';
println!("{}", c); // Output: ␄
Go:
char := '\u2404'
fmt.Printf("%c\n", char) // Output: ␄
CSS:
/* CSS content property */
.element::before {
content: "\002404"; /* 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%84
MD5:
a991c8d05ab0ec091ee39cd80d4e3dea
SHA1:
9fab034bea72bb56885e8d9f4626def4b8e21cb1
Base64:
4pCE