C:
char c = '\u0205';
printf("%c\n", c); // Output: ȅ
JavaScript:
const char = '\u0205';
console.log(char); // Output: ȅ
Java:
char c = '\u0205';
System.out.println(c); // Output: ȅ
JSON:
{"text": "\u0205"} // Value: ȅ
Python:
char = '\u0205'
print(char) # Output: ȅ
Perl:
my $char = "\x{0205}";
print $char; # Output: ȅ
PHP:
$char = "\x{0205}";
echo $char; // Output: ȅ
Ruby:
char = "\u{0205}"
puts char # Output: ȅ
Rust:
let c = '\u{205}';
println!("{}", c); // Output: ȅ
Go:
char := '\u0205'
fmt.Printf("%c\n", char) // Output: ȅ
CSS:
/* CSS content property */
.element::before {
content: "\000205"; /* 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%85
MD5:
e323142d71e2f5faa8c9f0708cd88af2
SHA1:
05dbc32b8e1dcef8d5666df2b4a47e980435b21a
Base64:
yIU=