C:
char c = '\u0231';
printf("%c\n", c); // Output: ȱ
JavaScript:
const char = '\u0231';
console.log(char); // Output: ȱ
Java:
char c = '\u0231';
System.out.println(c); // Output: ȱ
JSON:
{"text": "\u0231"} // Value: ȱ
Python:
char = '\u0231'
print(char) # Output: ȱ
Perl:
my $char = "\x{0231}";
print $char; # Output: ȱ
PHP:
$char = "\x{0231}";
echo $char; // Output: ȱ
Ruby:
char = "\u{0231}"
puts char # Output: ȱ
Rust:
let c = '\u{231}';
println!("{}", c); // Output: ȱ
Go:
char := '\u0231'
fmt.Printf("%c\n", char) // Output: ȱ
CSS:
/* CSS content property */
.element::before {
content: "\000231"; /* 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%B1
MD5:
ca2c65cbaf2d774889cc37028c38ced4
SHA1:
f75b6c9829419128ed02dc1f9c725268f45cee53
Base64:
yLE=