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