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