C:
char c = '\u0102';
printf("%c\n", c); // Output: Ă
JavaScript:
const char = '\u0102';
console.log(char); // Output: Ă
Java:
char c = '\u0102';
System.out.println(c); // Output: Ă
JSON:
{"text": "\u0102"} // Value: Ă
Python:
char = '\u0102'
print(char) # Output: Ă
Perl:
my $char = "\x{0102}";
print $char; # Output: Ă
PHP:
$char = "\x{0102}";
echo $char; // Output: Ă
Ruby:
char = "\u{0102}"
puts char # Output: Ă
Rust:
let c = '\u{102}';
println!("{}", c); // Output: Ă
Go:
char := '\u0102'
fmt.Printf("%c\n", char) // Output: Ă
CSS:
/* CSS content property */
.element::before {
content: "\000102"; /* 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=%C4%82
MD5:
04c0dd2d57c0418c17765612f4787c0e
SHA1:
3d6d34143034dddacf88d1d0ba111a49f9e2ba90
Base64:
xII=