C:
char c = '\u0215';
printf("%c\n", c); // Output: ȕ
JavaScript:
const char = '\u0215';
console.log(char); // Output: ȕ
Java:
char c = '\u0215';
System.out.println(c); // Output: ȕ
JSON:
{"text": "\u0215"} // Value: ȕ
Python:
char = '\u0215'
print(char) # Output: ȕ
Perl:
my $char = "\x{0215}";
print $char; # Output: ȕ
PHP:
$char = "\x{0215}";
echo $char; // Output: ȕ
Ruby:
char = "\u{0215}"
puts char # Output: ȕ
Rust:
let c = '\u{215}';
println!("{}", c); // Output: ȕ
Go:
char := '\u0215'
fmt.Printf("%c\n", char) // Output: ȕ
CSS:
/* CSS content property */
.element::before {
content: "\000215"; /* 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%95
MD5:
4cf6593c8bbe0546d6758e01e77b2a74
SHA1:
fa8767f450903c37c12f3cc2342444cf642db187
Base64:
yJU=