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