C:
char c = '\uAB33';
printf("%c\n", c); // Output: ꬳ
JavaScript:
const char = '\uAB33';
console.log(char); // Output: ꬳ
Java:
char c = '\uAB33';
System.out.println(c); // Output: ꬳ
JSON:
{"text": "\uAB33"} // Value: ꬳ
Python:
char = '\uAB33'
print(char) # Output: ꬳ
Perl:
my $char = "\x{AB33}";
print $char; # Output: ꬳ
PHP:
$char = "\x{AB33}";
echo $char; // Output: ꬳ
Ruby:
char = "\u{AB33}"
puts char # Output: ꬳ
Rust:
let c = '\u{AB33}';
println!("{}", c); // Output: ꬳ
Go:
char := '\uAB33'
fmt.Printf("%c\n", char) // Output: ꬳ
CSS:
/* CSS content property */
.element::before {
content: "\00AB33"; /* 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=%EA%AC%B3
MD5:
0b942030d2c1136258ca1b7cebc79fb4
SHA1:
8ef44d01c59c8f7e0e274d142964c91e4fa93f70
Base64:
6qyz