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