Unicode Finder

"螙" U+8799(CJK UNIFIED IDEOGRAPH-8799)

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

Programming

C
\u8799
JavaScript
\u8799
Java
\u8799
Json
\u8799
Python
\u8799
Perl
\x{8799}
PHP
\x{8799}
Ruby
\u{8799}
Rust
\u{8799}
Go
\u8799

Web

CSS
\008799
HtmlDecimal
螙
HtmlHexadecimal
螙
Url
%E8%9E%99

Code

MD5
ffa6a37964fd7cf9a38980bb49fe154a
Sha1
3aba50ec0f0aaf05f8c0dbb72ce55f6afc217ca6
Base64
6J6Z

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8799';
console.log(char);  // Output: 螙

Java:

char c = '\u8799';
System.out.println(c);  // Output: 螙

JSON:

{"text": "\u8799"}  // Value: 螙

Python:

char = '\u8799'
print(char)  # Output: 螙

Perl:

my $char = "\x{8799}";
print $char;  # Output: 螙

PHP:

$char = "\x{8799}";
echo $char;  // Output: 螙

Ruby:

char = "\u{8799}"
puts char  # Output: 螙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008799";  /* Display: 螙 */
}

HTML Decimal:

<p>HTML decimal: &#34713;</p>  <!-- Display: 螙 -->

HTML Hexadecimal:

<p>HTML hex: &#x8799;</p>  <!-- Display: 螙 -->

URL Encoding:

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

Encodings

MD5:

ffa6a37964fd7cf9a38980bb49fe154a

SHA1:

3aba50ec0f0aaf05f8c0dbb72ce55f6afc217ca6

Base64:

6J6Z