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