Unicode Finder

"Ȅ" U+0204(LATIN CAPITAL LETTER E WITH DOUBLE GRAVE)

Ȅ
U+0204
Nazwa Bloku
Latin Extended-B
Nazwa
LATIN CAPITAL LETTER E WITH DOUBLE GRAVE

Programming

C
\u0204
JavaScript
\u0204
Java
\u0204
Json
\u0204
Python
\u0204
Perl
\x{0204}
PHP
\x{0204}
Ruby
\u{0204}
Rust
\u{204}
Go
\u0204

Web

CSS
\000204
HtmlDecimal
Ȅ
HtmlHexadecimal
Ȅ
Url
%C8%84

Code

MD5
17925c455f1602f9eb6b1e5cf98cd7ba
Sha1
f8020ae4183b04334c4e0d70ba52b0511e08a1be
Base64
yIQ=

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u0204';
console.log(char);  // Output: Ȅ

Java:

char c = '\u0204';
System.out.println(c);  // Output: Ȅ

JSON:

{"text": "\u0204"}  // Value: Ȅ

Python:

char = '\u0204'
print(char)  # Output: Ȅ

Perl:

my $char = "\x{0204}";
print $char;  # Output: Ȅ

PHP:

$char = "\x{0204}";
echo $char;  // Output: Ȅ

Ruby:

char = "\u{0204}"
puts char  # Output: Ȅ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000204";  /* Display: Ȅ */
}

HTML Decimal:

<p>HTML decimal: &#516;</p>  <!-- Display: Ȅ -->

HTML Hexadecimal:

<p>HTML hex: &#x0204;</p>  <!-- Display: Ȅ -->

URL Encoding:

// Ȅ URL encoding
https://unicodefinder.com/search.php?query=%C8%84

Encodings

MD5:

17925c455f1602f9eb6b1e5cf98cd7ba

SHA1:

f8020ae4183b04334c4e0d70ba52b0511e08a1be

Base64:

yIQ=