C:
char c = '\u2414';
printf("%c\n", c); // Output: ␔
JavaScript:
const char = '\u2414';
console.log(char); // Output: ␔
Java:
char c = '\u2414';
System.out.println(c); // Output: ␔
JSON:
{"text": "\u2414"} // Value: ␔
Python:
char = '\u2414'
print(char) # Output: ␔
Perl:
my $char = "\x{2414}";
print $char; # Output: ␔
PHP:
$char = "\x{2414}";
echo $char; // Output: ␔
Ruby:
char = "\u{2414}"
puts char # Output: ␔
Rust:
let c = '\u{2414}';
println!("{}", c); // Output: ␔
Go:
char := '\u2414'
fmt.Printf("%c\n", char) // Output: ␔
CSS:
/* CSS content property */
.element::before {
content: "\002414"; /* 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%94
MD5:
521b6581b373e0bc2494109ee73e8794
SHA1:
8223d4c55119299c527a82e971982f879ec6c1f7
Base64:
4pCU