C:
char c = '\u0216';
printf("%c\n", c); // Output: Ȗ
JavaScript:
const char = '\u0216';
console.log(char); // Output: Ȗ
Java:
char c = '\u0216';
System.out.println(c); // Output: Ȗ
JSON:
{"text": "\u0216"} // Value: Ȗ
Python:
char = '\u0216'
print(char) # Output: Ȗ
Perl:
my $char = "\x{0216}";
print $char; # Output: Ȗ
PHP:
$char = "\x{0216}";
echo $char; // Output: Ȗ
Ruby:
char = "\u{0216}"
puts char # Output: Ȗ
Rust:
let c = '\u{216}';
println!("{}", c); // Output: Ȗ
Go:
char := '\u0216'
fmt.Printf("%c\n", char) // Output: Ȗ
CSS:
/* CSS content property */
.element::before {
content: "\000216"; /* 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%96
MD5:
14e132a2627ba5b519ee0ff7ba4cddf9
SHA1:
10da098331a06d9ce2bcbc8d92554e6055663126
Base64:
yJY=