Unicode Finder

"ẉ" U+1E89(LATIN SMALL LETTER W WITH DOT BELOW)

U+1E89
区块名称
Latin Extended Additional
名称
LATIN SMALL LETTER W WITH DOT BELOW

Programming

C
\u1E89
JavaScript
\u1E89
Java
\u1E89
Json
\u1E89
Python
\u1E89
Perl
\x{1E89}
PHP
\x{1E89}
Ruby
\u{1E89}
Rust
\u{1E89}
Go
\u1E89

Web

CSS
\001E89
HtmlDecimal
ẉ
HtmlHexadecimal
ẉ
Url
%E1%BA%89

Code

MD5
cb65ef374f283dd7d253720f7f9d325c
Sha1
622780f5a6c88831545c9b72f4deddc2bbf71012
Base64
4bqJ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1E89';
console.log(char);  // Output: ẉ

Java:

char c = '\u1E89';
System.out.println(c);  // Output: ẉ

JSON:

{"text": "\u1E89"}  // Value: ẉ

Python:

char = '\u1E89'
print(char)  # Output: ẉ

Perl:

my $char = "\x{1E89}";
print $char;  # Output: ẉ

PHP:

$char = "\x{1E89}";
echo $char;  // Output: ẉ

Ruby:

char = "\u{1E89}"
puts char  # Output: ẉ

Rust:

let c = '\u{1E89}';
println!("{}", c);  // Output: ẉ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001E89";  /* Display: ẉ */
}

HTML Decimal:

<p>HTML decimal: &#7817;</p>  <!-- Display: ẉ -->

HTML Hexadecimal:

<p>HTML hex: &#x1E89;</p>  <!-- Display: ẉ -->

URL Encoding:

// ẉ URL encoding
https://unicodefinder.com/search.php?query=%E1%BA%89

Encodings

MD5:

cb65ef374f283dd7d253720f7f9d325c

SHA1:

622780f5a6c88831545c9b72f4deddc2bbf71012

Base64:

4bqJ