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