C:
char c = '\u2DA6';
printf("%c\n", c); // Output: ⶦ
JavaScript:
const char = '\u2DA6';
console.log(char); // Output: ⶦ
Java:
char c = '\u2DA6';
System.out.println(c); // Output: ⶦ
JSON:
{"text": "\u2DA6"} // Value: ⶦ
Python:
char = '\u2DA6'
print(char) # Output: ⶦ
Perl:
my $char = "\x{2DA6}";
print $char; # Output: ⶦ
PHP:
$char = "\x{2DA6}";
echo $char; // Output: ⶦ
Ruby:
char = "\u{2DA6}"
puts char # Output: ⶦ
Rust:
let c = '\u{2DA6}';
println!("{}", c); // Output: ⶦ
Go:
char := '\u2DA6'
fmt.Printf("%c\n", char) // Output: ⶦ
CSS:
/* CSS content property */
.element::before {
content: "\002DA6"; /* 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%B6%A6
MD5:
0b149351d6fe694f5c19c33d63bf3653
SHA1:
7623d8240db2cf84959bf17cbeaefd000914c844
Base64:
4ram