Unicode Finder

"螞" U+879E(CJK UNIFIED IDEOGRAPH-879E)

U+879E
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-879E

Programming

C
\u879E
JavaScript
\u879E
Java
\u879E
Json
\u879E
Python
\u879E
Perl
\x{879E}
PHP
\x{879E}
Ruby
\u{879E}
Rust
\u{879E}
Go
\u879E

Web

CSS
\00879E
HtmlDecimal
螞
HtmlHexadecimal
螞
Url
%E8%9E%9E

Code

MD5
14590fa4f6fc87b1bf1dc0f782fc8afb
Sha1
79a43785b16d8e83c0481b52688197ec84af6620
Base64
6J6e

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u879E';
console.log(char);  // Output: 螞

Java:

char c = '\u879E';
System.out.println(c);  // Output: 螞

JSON:

{"text": "\u879E"}  // Value: 螞

Python:

char = '\u879E'
print(char)  # Output: 螞

Perl:

my $char = "\x{879E}";
print $char;  # Output: 螞

PHP:

$char = "\x{879E}";
echo $char;  // Output: 螞

Ruby:

char = "\u{879E}"
puts char  # Output: 螞

Rust:

let c = '\u{879E}';
println!("{}", c);  // Output: 螞

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00879E";  /* Display: 螞 */
}

HTML Decimal:

<p>HTML decimal: &#34718;</p>  <!-- Display: 螞 -->

HTML Hexadecimal:

<p>HTML hex: &#x879E;</p>  <!-- Display: 螞 -->

URL Encoding:

// 螞 URL encoding
https://unicodefinder.com/search.php?query=%E8%9E%9E

Encodings

MD5:

14590fa4f6fc87b1bf1dc0f782fc8afb

SHA1:

79a43785b16d8e83c0481b52688197ec84af6620

Base64:

6J6e