C:
char c = '\u1A86';
printf("%c\n", c); // Output: ᪆
JavaScript:
const char = '\u1A86';
console.log(char); // Output: ᪆
Java:
char c = '\u1A86';
System.out.println(c); // Output: ᪆
JSON:
{"text": "\u1A86"} // Value: ᪆
Python:
char = '\u1A86'
print(char) # Output: ᪆
Perl:
my $char = "\x{1A86}";
print $char; # Output: ᪆
PHP:
$char = "\x{1A86}";
echo $char; // Output: ᪆
Ruby:
char = "\u{1A86}"
puts char # Output: ᪆
Rust:
let c = '\u{1A86}';
println!("{}", c); // Output: ᪆
Go:
char := '\u1A86'
fmt.Printf("%c\n", char) // Output: ᪆
CSS:
/* CSS content property */
.element::before {
content: "\001A86"; /* 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%86
MD5:
b755de0c47876b4374bb02f7ae96581f
SHA1:
01cac17eb4e0e943e5d2aae358c245d7a5419991
Base64:
4aqG