C:
char c = '\u2402';
printf("%c\n", c); // Output: ␂
JavaScript:
const char = '\u2402';
console.log(char); // Output: ␂
Java:
char c = '\u2402';
System.out.println(c); // Output: ␂
JSON:
{"text": "\u2402"} // Value: ␂
Python:
char = '\u2402'
print(char) # Output: ␂
Perl:
my $char = "\x{2402}";
print $char; # Output: ␂
PHP:
$char = "\x{2402}";
echo $char; // Output: ␂
Ruby:
char = "\u{2402}"
puts char # Output: ␂
Rust:
let c = '\u{2402}';
println!("{}", c); // Output: ␂
Go:
char := '\u2402'
fmt.Printf("%c\n", char) // Output: ␂
CSS:
/* CSS content property */
.element::before {
content: "\002402"; /* 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%82
MD5:
9afac6c13270b3f4e3d8ae6d37276b40
SHA1:
b90a890d3aa5808adbd289c95f378a40ecf6b6c5
Base64:
4pCC