C:
char c = '\u0214';
printf("%c\n", c); // Output: Ȕ
JavaScript:
const char = '\u0214';
console.log(char); // Output: Ȕ
Java:
char c = '\u0214';
System.out.println(c); // Output: Ȕ
JSON:
{"text": "\u0214"} // Value: Ȕ
Python:
char = '\u0214'
print(char) # Output: Ȕ
Perl:
my $char = "\x{0214}";
print $char; # Output: Ȕ
PHP:
$char = "\x{0214}";
echo $char; // Output: Ȕ
Ruby:
char = "\u{0214}"
puts char # Output: Ȕ
Rust:
let c = '\u{214}';
println!("{}", c); // Output: Ȕ
Go:
char := '\u0214'
fmt.Printf("%c\n", char) // Output: Ȕ
CSS:
/* CSS content property */
.element::before {
content: "\000214"; /* 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%94
MD5:
6434727ad5f08b7b0081bab3d39b5df7
SHA1:
3d5bba1e32d5d0b49599a124e222a266c4c02719
Base64:
yJQ=