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