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