Unicode Finder

"a" U+0061(LATIN SMALL LETTER A)

a
U+0061
Block Name
Basic Latin
Name
LATIN SMALL LETTER A

Programming

C
\u0061
JavaScript
\u0061
Java
\u0061
Json
\u0061
Python
\u0061
Perl
\x{0061}
PHP
\x{0061}
Ruby
\u{0061}
Rust
\u{61}
Go
\u0061

Web

CSS
\000061
HtmlDecimal
a
HtmlHexadecimal
a
Url
a

Code

MD5
0cc175b9c0f1b6a831c399e269772661
Sha1
86f7e437faa5a7fce15d1ddcb9eaeaea377667b8
Base64
YQ==

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0061';
console.log(char);  // Output: a

Java:

char c = '\u0061';
System.out.println(c);  // Output: a

JSON:

{"text": "\u0061"}  // Value: a

Python:

char = '\u0061'
print(char)  # Output: a

Perl:

my $char = "\x{0061}";
print $char;  # Output: a

PHP:

$char = "\x{0061}";
echo $char;  // Output: a

Ruby:

char = "\u{0061}"
puts char  # Output: a

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000061";  /* Display: a */
}

HTML Decimal:

<p>HTML decimal: &#97;</p>  <!-- Display: a -->

HTML Hexadecimal:

<p>HTML hex: &#x0061;</p>  <!-- Display: a -->

URL Encoding:

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

Encodings

MD5:

0cc175b9c0f1b6a831c399e269772661

SHA1:

86f7e437faa5a7fce15d1ddcb9eaeaea377667b8

Base64:

YQ==