C:
char c = '\u0225';
printf("%c\n", c); // Output: ȥ
JavaScript:
const char = '\u0225';
console.log(char); // Output: ȥ
Java:
char c = '\u0225';
System.out.println(c); // Output: ȥ
JSON:
{"text": "\u0225"} // Value: ȥ
Python:
char = '\u0225'
print(char) # Output: ȥ
Perl:
my $char = "\x{0225}";
print $char; # Output: ȥ
PHP:
$char = "\x{0225}";
echo $char; // Output: ȥ
Ruby:
char = "\u{0225}"
puts char # Output: ȥ
Rust:
let c = '\u{225}';
println!("{}", c); // Output: ȥ
Go:
char := '\u0225'
fmt.Printf("%c\n", char) // Output: ȥ
CSS:
/* CSS content property */
.element::before {
content: "\000225"; /* 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%A5
MD5:
7818ebcff8bdba4966b19c5903090f58
SHA1:
751eae867dfe8c3d75a41375972308774db52e08
Base64:
yKU=