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