Unicode Finder

"Ẍ" U+1E8C(LATIN CAPITAL LETTER X WITH DIAERESIS)

U+1E8C
区块名称
Latin Extended Additional
名称
LATIN CAPITAL LETTER X WITH DIAERESIS

Programming

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

Web

CSS
\001E8C
HtmlDecimal
Ẍ
HtmlHexadecimal
Ẍ
Url
%E1%BA%8C

Code

MD5
d72b65b889349876d142ddd0bd58613d
Sha1
ecac25aaa190d960fc96ce2f4179540b2497dc27
Base64
4bqM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1E8C';
console.log(char);  // Output: Ẍ

Java:

char c = '\u1E8C';
System.out.println(c);  // Output: Ẍ

JSON:

{"text": "\u1E8C"}  // Value: Ẍ

Python:

char = '\u1E8C'
print(char)  # Output: Ẍ

Perl:

my $char = "\x{1E8C}";
print $char;  # Output: Ẍ

PHP:

$char = "\x{1E8C}";
echo $char;  // Output: Ẍ

Ruby:

char = "\u{1E8C}"
puts char  # Output: Ẍ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7820;</p>  <!-- Display: Ẍ -->

HTML Hexadecimal:

<p>HTML hex: &#x1E8C;</p>  <!-- Display: Ẍ -->

URL Encoding:

// Ẍ URL encoding
https://unicodefinder.com/search.php?query=%E1%BA%8C

Encodings

MD5:

d72b65b889349876d142ddd0bd58613d

SHA1:

ecac25aaa190d960fc96ce2f4179540b2497dc27

Base64:

4bqM