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