Unicode Finder

"V" U+0056(LATIN CAPITAL LETTER V)

V
U+0056
Block Name
Basic Latin
Name
LATIN CAPITAL LETTER V

Programming

C
\u0056
JavaScript
\u0056
Java
\u0056
Json
\u0056
Python
\u0056
Perl
\x{0056}
PHP
\x{0056}
Ruby
\u{0056}
Rust
\u{56}
Go
\u0056

Web

CSS
\000056
HtmlDecimal
V
HtmlHexadecimal
V
Url
V

Code

MD5
5206560a306a2e085a437fd258eb57ce
Sha1
c9ee5681d3c59f7541c27a38b67edf46259e187b
Base64
Vg==

Usage Examples

Programming Languages

C:

char c = '\u0056';
printf("%c\n", c);  // Output: V

JavaScript:

const char = '\u0056';
console.log(char);  // Output: V

Java:

char c = '\u0056';
System.out.println(c);  // Output: V

JSON:

{"text": "\u0056"}  // Value: V

Python:

char = '\u0056'
print(char)  # Output: V

Perl:

my $char = "\x{0056}";
print $char;  # Output: V

PHP:

$char = "\x{0056}";
echo $char;  // Output: V

Ruby:

char = "\u{0056}"
puts char  # Output: V

Rust:

let c = '\u{56}';
println!("{}", c);  // Output: V

Go:

char := '\u0056'
fmt.Printf("%c\n", char)  // Output: V

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000056";  /* Display: V */
}

HTML Decimal:

<p>HTML decimal: &#86;</p>  <!-- Display: V -->

HTML Hexadecimal:

<p>HTML hex: &#x0056;</p>  <!-- Display: V -->

URL Encoding:

// V URL encoding
https://unicodefinder.com/search.php?query=V

Encodings

MD5:

5206560a306a2e085a437fd258eb57ce

SHA1:

c9ee5681d3c59f7541c27a38b67edf46259e187b

Base64:

Vg==