C:
char c = '\u0285';
printf("%c\n", c); // Output: ʅ
JavaScript:
const char = '\u0285';
console.log(char); // Output: ʅ
Java:
char c = '\u0285';
System.out.println(c); // Output: ʅ
JSON:
{"text": "\u0285"} // Value: ʅ
Python:
char = '\u0285'
print(char) # Output: ʅ
Perl:
my $char = "\x{0285}";
print $char; # Output: ʅ
PHP:
$char = "\x{0285}";
echo $char; // Output: ʅ
Ruby:
char = "\u{0285}"
puts char # Output: ʅ
Rust:
let c = '\u{285}';
println!("{}", c); // Output: ʅ
Go:
char := '\u0285'
fmt.Printf("%c\n", char) // Output: ʅ
CSS:
/* CSS content property */
.element::before {
content: "\000285"; /* 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%85
MD5:
e32de956306a84043e7059b8934378ba
SHA1:
e99e9d03cd329a9dec4e75092499190f30c1aae8
Base64:
yoU=