Unicode Finder

"Q" U+0051(LATIN CAPITAL LETTER Q)

Q
U+0051
Block Name
Basic Latin
Name
LATIN CAPITAL LETTER Q

Programming

C
\u0051
JavaScript
\u0051
Java
\u0051
Json
\u0051
Python
\u0051
Perl
\x{0051}
PHP
\x{0051}
Ruby
\u{0051}
Rust
\u{51}
Go
\u0051

Web

CSS
\000051
HtmlDecimal
Q
HtmlHexadecimal
Q
Url
Q

Code

MD5
f09564c9ca56850d4cd6b3319e541aee
Sha1
c3156e00d3c2588c639e0d3cf6821258b05761c7
Base64
UQ==

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0051';
console.log(char);  // Output: Q

Java:

char c = '\u0051';
System.out.println(c);  // Output: Q

JSON:

{"text": "\u0051"}  // Value: Q

Python:

char = '\u0051'
print(char)  # Output: Q

Perl:

my $char = "\x{0051}";
print $char;  # Output: Q

PHP:

$char = "\x{0051}";
echo $char;  // Output: Q

Ruby:

char = "\u{0051}"
puts char  # Output: Q

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000051";  /* Display: Q */
}

HTML Decimal:

<p>HTML decimal: &#81;</p>  <!-- Display: Q -->

HTML Hexadecimal:

<p>HTML hex: &#x0051;</p>  <!-- Display: Q -->

URL Encoding:

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

Encodings

MD5:

f09564c9ca56850d4cd6b3319e541aee

SHA1:

c3156e00d3c2588c639e0d3cf6821258b05761c7

Base64:

UQ==