C:
char c = '\u0290';
printf("%c\n", c); // Output: ʐ
JavaScript:
const char = '\u0290';
console.log(char); // Output: ʐ
Java:
char c = '\u0290';
System.out.println(c); // Output: ʐ
JSON:
{"text": "\u0290"} // Value: ʐ
Python:
char = '\u0290'
print(char) # Output: ʐ
Perl:
my $char = "\x{0290}";
print $char; # Output: ʐ
PHP:
$char = "\x{0290}";
echo $char; // Output: ʐ
Ruby:
char = "\u{0290}"
puts char # Output: ʐ
Rust:
let c = '\u{290}';
println!("{}", c); // Output: ʐ
Go:
char := '\u0290'
fmt.Printf("%c\n", char) // Output: ʐ
CSS:
/* CSS content property */
.element::before {
content: "\000290"; /* 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=%CA%90
MD5:
1a430e895fad0e7dbeab78f09215a036
SHA1:
dc0da2429933e0b33def135316212b229e7ec2ca
Base64:
ypA=