Unicode Finder

"w" U+0077(LATIN SMALL LETTER W)

w
U+0077
Block Name
Basic Latin
Name
LATIN SMALL LETTER W

Programming

C
\u0077
JavaScript
\u0077
Java
\u0077
Json
\u0077
Python
\u0077
Perl
\x{0077}
PHP
\x{0077}
Ruby
\u{0077}
Rust
\u{77}
Go
\u0077

Web

CSS
\000077
HtmlDecimal
w
HtmlHexadecimal
w
Url
w

Code

MD5
f1290186a5d0b1ceab27f4e77c0c5d68
Sha1
aff024fe4ab0fece4091de044c58c9ae4233383a
Base64
dw==

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0077';
console.log(char);  // Output: w

Java:

char c = '\u0077';
System.out.println(c);  // Output: w

JSON:

{"text": "\u0077"}  // Value: w

Python:

char = '\u0077'
print(char)  # Output: w

Perl:

my $char = "\x{0077}";
print $char;  # Output: w

PHP:

$char = "\x{0077}";
echo $char;  // Output: w

Ruby:

char = "\u{0077}"
puts char  # Output: w

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000077";  /* Display: w */
}

HTML Decimal:

<p>HTML decimal: &#119;</p>  <!-- Display: w -->

HTML Hexadecimal:

<p>HTML hex: &#x0077;</p>  <!-- Display: w -->

URL Encoding:

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

Encodings

MD5:

f1290186a5d0b1ceab27f4e77c0c5d68

SHA1:

aff024fe4ab0fece4091de044c58c9ae4233383a

Base64:

dw==