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