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