C:
char c = '\u0226';
printf("%c\n", c); // Output: Ȧ
JavaScript:
const char = '\u0226';
console.log(char); // Output: Ȧ
Java:
char c = '\u0226';
System.out.println(c); // Output: Ȧ
JSON:
{"text": "\u0226"} // Value: Ȧ
Python:
char = '\u0226'
print(char) # Output: Ȧ
Perl:
my $char = "\x{0226}";
print $char; # Output: Ȧ
PHP:
$char = "\x{0226}";
echo $char; // Output: Ȧ
Ruby:
char = "\u{0226}"
puts char # Output: Ȧ
Rust:
let c = '\u{226}';
println!("{}", c); // Output: Ȧ
Go:
char := '\u0226'
fmt.Printf("%c\n", char) // Output: Ȧ
CSS:
/* CSS content property */
.element::before {
content: "\000226"; /* 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%A6
MD5:
f776c3f8c4758595cc98e5c9c30defad
SHA1:
1e9b7f930c7d7b08c0b4f10277b026ad8373fa5b
Base64:
yKY=