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