C:
char c = '\u0203';
printf("%c\n", c); // Output: ȃ
JavaScript:
const char = '\u0203';
console.log(char); // Output: ȃ
Java:
char c = '\u0203';
System.out.println(c); // Output: ȃ
JSON:
{"text": "\u0203"} // Value: ȃ
Python:
char = '\u0203'
print(char) # Output: ȃ
Perl:
my $char = "\x{0203}";
print $char; # Output: ȃ
PHP:
$char = "\x{0203}";
echo $char; // Output: ȃ
Ruby:
char = "\u{0203}"
puts char # Output: ȃ
Rust:
let c = '\u{203}';
println!("{}", c); // Output: ȃ
Go:
char := '\u0203'
fmt.Printf("%c\n", char) // Output: ȃ
CSS:
/* CSS content property */
.element::before {
content: "\000203"; /* 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%83
MD5:
5810607c3a4d407e3c28f7ff78061b24
SHA1:
d807dae90a9fdc7f1df90d3cade608145ab2596c
Base64:
yIM=