C:
char c = '\u0076';
printf("%c\n", c); // Output: v
JavaScript:
const char = '\u0076';
console.log(char); // Output: v
Java:
char c = '\u0076';
System.out.println(c); // Output: v
JSON:
{"text": "\u0076"} // Value: v
Python:
char = '\u0076'
print(char) # Output: v
Perl:
my $char = "\x{0076}";
print $char; # Output: v
PHP:
$char = "\x{0076}";
echo $char; // Output: v
Ruby:
char = "\u{0076}"
puts char # Output: v
Rust:
let c = '\u{76}';
println!("{}", c); // Output: v
Go:
char := '\u0076'
fmt.Printf("%c\n", char) // Output: v
CSS:
/* CSS content property */
.element::before {
content: "\000076"; /* Display: v */
}
HTML Decimal:
<p>HTML decimal: v</p> <!-- Display: v -->
HTML Hexadecimal:
<p>HTML hex: v</p> <!-- Display: v -->
URL Encoding:
// v URL encoding
https://unicodefinder.com/search.php?query=v
MD5:
9e3669d19b675bd57058fd4664205d2a
SHA1:
7a38d8cbd20d9932ba948efaa364bb62651d5ad4
Base64:
dg==