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