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