Unicode Finder

"Ẕ" U+1E94(LATIN CAPITAL LETTER Z WITH LINE BELOW)

U+1E94
ブロック名
Latin Extended Additional
名前
LATIN CAPITAL LETTER Z WITH LINE BELOW

Programming

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

Web

CSS
\001E94
HtmlDecimal
Ẕ
HtmlHexadecimal
Ẕ
Url
%E1%BA%94

Code

MD5
b00f67bb9b13157c5dfea6c315319b84
Sha1
ad0849b08289d6a9eb7001655703a685a5718a7f
Base64
4bqU

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u1E94';
console.log(char);  // Output: Ẕ

Java:

char c = '\u1E94';
System.out.println(c);  // Output: Ẕ

JSON:

{"text": "\u1E94"}  // Value: Ẕ

Python:

char = '\u1E94'
print(char)  # Output: Ẕ

Perl:

my $char = "\x{1E94}";
print $char;  # Output: Ẕ

PHP:

$char = "\x{1E94}";
echo $char;  // Output: Ẕ

Ruby:

char = "\u{1E94}"
puts char  # Output: Ẕ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7828;</p>  <!-- Display: Ẕ -->

HTML Hexadecimal:

<p>HTML hex: &#x1E94;</p>  <!-- Display: Ẕ -->

URL Encoding:

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

Encodings

MD5:

b00f67bb9b13157c5dfea6c315319b84

SHA1:

ad0849b08289d6a9eb7001655703a685a5718a7f

Base64:

4bqU