C:
char c = '\u2416';
printf("%c\n", c); // Output: ␖
JavaScript:
const char = '\u2416';
console.log(char); // Output: ␖
Java:
char c = '\u2416';
System.out.println(c); // Output: ␖
JSON:
{"text": "\u2416"} // Value: ␖
Python:
char = '\u2416'
print(char) # Output: ␖
Perl:
my $char = "\x{2416}";
print $char; # Output: ␖
PHP:
$char = "\x{2416}";
echo $char; // Output: ␖
Ruby:
char = "\u{2416}"
puts char # Output: ␖
Rust:
let c = '\u{2416}';
println!("{}", c); // Output: ␖
Go:
char := '\u2416'
fmt.Printf("%c\n", char) // Output: ␖
CSS:
/* CSS content property */
.element::before {
content: "\002416"; /* 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%96
MD5:
35bd5be6a923b5b1d98a7966591671b0
SHA1:
c9ac19cff12bd4508cf0744b4c62067777c6845e
Base64:
4pCW