C:
char c = '\u0202';
printf("%c\n", c); // Output: Ȃ
JavaScript:
const char = '\u0202';
console.log(char); // Output: Ȃ
Java:
char c = '\u0202';
System.out.println(c); // Output: Ȃ
JSON:
{"text": "\u0202"} // Value: Ȃ
Python:
char = '\u0202'
print(char) # Output: Ȃ
Perl:
my $char = "\x{0202}";
print $char; # Output: Ȃ
PHP:
$char = "\x{0202}";
echo $char; // Output: Ȃ
Ruby:
char = "\u{0202}"
puts char # Output: Ȃ
Rust:
let c = '\u{202}';
println!("{}", c); // Output: Ȃ
Go:
char := '\u0202'
fmt.Printf("%c\n", char) // Output: Ȃ
CSS:
/* CSS content property */
.element::before {
content: "\000202"; /* 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=%C8%82
MD5:
f7aab59c2b081e78bf21b680de6c7863
SHA1:
e745b8166de6c5378ba036184e27d8f6576433df
Base64:
yII=