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