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