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