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