C:
char c = '\u2021';
printf("%c\n", c); // Output: ‡
JavaScript:
const char = '\u2021';
console.log(char); // Output: ‡
Java:
char c = '\u2021';
System.out.println(c); // Output: ‡
JSON:
{"text": "\u2021"} // Value: ‡
Python:
char = '\u2021'
print(char) # Output: ‡
Perl:
my $char = "\x{2021}";
print $char; # Output: ‡
PHP:
$char = "\x{2021}";
echo $char; // Output: ‡
Ruby:
char = "\u{2021}"
puts char # Output: ‡
Rust:
let c = '\u{2021}';
println!("{}", c); // Output: ‡
Go:
char := '\u2021'
fmt.Printf("%c\n", char) // Output: ‡
CSS:
/* CSS content property */
.element::before {
content: "\002021"; /* 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%80%A1
MD5:
a04d4c44b76eac8771155179958a2e26
SHA1:
977cfaa71c73ee11feb92f2a693352cd028a894e
Base64:
4oCh