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