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