C:
char c = '\u0230';
printf("%c\n", c); // Output: Ȱ
JavaScript:
const char = '\u0230';
console.log(char); // Output: Ȱ
Java:
char c = '\u0230';
System.out.println(c); // Output: Ȱ
JSON:
{"text": "\u0230"} // Value: Ȱ
Python:
char = '\u0230'
print(char) # Output: Ȱ
Perl:
my $char = "\x{0230}";
print $char; # Output: Ȱ
PHP:
$char = "\x{0230}";
echo $char; // Output: Ȱ
Ruby:
char = "\u{0230}"
puts char # Output: Ȱ
Rust:
let c = '\u{230}';
println!("{}", c); // Output: Ȱ
Go:
char := '\u0230'
fmt.Printf("%c\n", char) // Output: Ȱ
CSS:
/* CSS content property */
.element::before {
content: "\000230"; /* 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%B0
MD5:
96d1c99dee774b33599d720dad53fde6
SHA1:
855a86b1059ce2ded4bf32a25d2a10d6848a1412
Base64:
yLA=