C:
char c = '\u0227';
printf("%c\n", c); // Output: ȧ
JavaScript:
const char = '\u0227';
console.log(char); // Output: ȧ
Java:
char c = '\u0227';
System.out.println(c); // Output: ȧ
JSON:
{"text": "\u0227"} // Value: ȧ
Python:
char = '\u0227'
print(char) # Output: ȧ
Perl:
my $char = "\x{0227}";
print $char; # Output: ȧ
PHP:
$char = "\x{0227}";
echo $char; // Output: ȧ
Ruby:
char = "\u{0227}"
puts char # Output: ȧ
Rust:
let c = '\u{227}';
println!("{}", c); // Output: ȧ
Go:
char := '\u0227'
fmt.Printf("%c\n", char) // Output: ȧ
CSS:
/* CSS content property */
.element::before {
content: "\000227"; /* 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%A7
MD5:
d4a16dafd4aa7bba30bce1e923fdd45a
SHA1:
a05d2c43e8ae2bd5b8060858c36245f0a3fccd87
Base64:
yKc=