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