C:
char c = '\u0234';
printf("%c\n", c); // Output: ȴ
JavaScript:
const char = '\u0234';
console.log(char); // Output: ȴ
Java:
char c = '\u0234';
System.out.println(c); // Output: ȴ
JSON:
{"text": "\u0234"} // Value: ȴ
Python:
char = '\u0234'
print(char) # Output: ȴ
Perl:
my $char = "\x{0234}";
print $char; # Output: ȴ
PHP:
$char = "\x{0234}";
echo $char; // Output: ȴ
Ruby:
char = "\u{0234}"
puts char # Output: ȴ
Rust:
let c = '\u{234}';
println!("{}", c); // Output: ȴ
Go:
char := '\u0234'
fmt.Printf("%c\n", char) // Output: ȴ
CSS:
/* CSS content property */
.element::before {
content: "\000234"; /* 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%B4
MD5:
016dd6ad236857f68706bfe371130ff2
SHA1:
9dc13dfc4f65c64e48f3e34aefc91a806ab9b567
Base64:
yLQ=