C:
char c = '\u2400';
printf("%c\n", c); // Output: ␀
JavaScript:
const char = '\u2400';
console.log(char); // Output: ␀
Java:
char c = '\u2400';
System.out.println(c); // Output: ␀
JSON:
{"text": "\u2400"} // Value: ␀
Python:
char = '\u2400'
print(char) # Output: ␀
Perl:
my $char = "\x{2400}";
print $char; # Output: ␀
PHP:
$char = "\x{2400}";
echo $char; // Output: ␀
Ruby:
char = "\u{2400}"
puts char # Output: ␀
Rust:
let c = '\u{2400}';
println!("{}", c); // Output: ␀
Go:
char := '\u2400'
fmt.Printf("%c\n", char) // Output: ␀
CSS:
/* CSS content property */
.element::before {
content: "\002400"; /* 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%80
MD5:
83e2693a9863d40ebeb224df78237b51
SHA1:
c5385400a3468ee3848a57a47728f1bffb5ce885
Base64:
4pCA