Unicode Finder

"Ḝ" U+1E1C(LATIN CAPITAL LETTER E WITH CEDILLA AND BREVE)

U+1E1C
区块名称
Latin Extended Additional
名称
LATIN CAPITAL LETTER E WITH CEDILLA AND BREVE

Programming

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

Web

CSS
\001E1C
HtmlDecimal
Ḝ
HtmlHexadecimal
Ḝ
Url
%E1%B8%9C

Code

MD5
82ba8f0caf2c6de09a8263dfb3e5a168
Sha1
031a037916e48d058c9b5c61e63ee3dc79c0456b
Base64
4bic

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1E1C';
console.log(char);  // Output: Ḝ

Java:

char c = '\u1E1C';
System.out.println(c);  // Output: Ḝ

JSON:

{"text": "\u1E1C"}  // Value: Ḝ

Python:

char = '\u1E1C'
print(char)  # Output: Ḝ

Perl:

my $char = "\x{1E1C}";
print $char;  # Output: Ḝ

PHP:

$char = "\x{1E1C}";
echo $char;  // Output: Ḝ

Ruby:

char = "\u{1E1C}"
puts char  # Output: Ḝ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7708;</p>  <!-- Display: Ḝ -->

HTML Hexadecimal:

<p>HTML hex: &#x1E1C;</p>  <!-- Display: Ḝ -->

URL Encoding:

// Ḝ URL encoding
https://unicodefinder.com/search.php?query=%E1%B8%9C

Encodings

MD5:

82ba8f0caf2c6de09a8263dfb3e5a168

SHA1:

031a037916e48d058c9b5c61e63ee3dc79c0456b

Base64:

4bic