C:
char c = '\u2422';
printf("%c\n", c); // Output: ␢
JavaScript:
const char = '\u2422';
console.log(char); // Output: ␢
Java:
char c = '\u2422';
System.out.println(c); // Output: ␢
JSON:
{"text": "\u2422"} // Value: ␢
Python:
char = '\u2422'
print(char) # Output: ␢
Perl:
my $char = "\x{2422}";
print $char; # Output: ␢
PHP:
$char = "\x{2422}";
echo $char; // Output: ␢
Ruby:
char = "\u{2422}"
puts char # Output: ␢
Rust:
let c = '\u{2422}';
println!("{}", c); // Output: ␢
Go:
char := '\u2422'
fmt.Printf("%c\n", char) // Output: ␢
CSS:
/* CSS content property */
.element::before {
content: "\002422"; /* 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%A2
MD5:
b6549f65c268ddbf7d25f2eb9b98d623
SHA1:
660aceb32510e84261d89b9196ecfcaf3fd9c08f
Base64:
4pCi