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