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