Unicode Finder

"硘" U+7858(CJK UNIFIED IDEOGRAPH-7858)

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

Programming

C
\u7858
JavaScript
\u7858
Java
\u7858
Json
\u7858
Python
\u7858
Perl
\x{7858}
PHP
\x{7858}
Ruby
\u{7858}
Rust
\u{7858}
Go
\u7858

Web

CSS
\007858
HtmlDecimal
硘
HtmlHexadecimal
硘
Url
%E7%A1%98

Code

MD5
4a5518292b60704f6bcc562582e938ce
Sha1
99ec294316a188fb3b62a8d6f18248c534b281ee
Base64
56GY

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7858';
console.log(char);  // Output: 硘

Java:

char c = '\u7858';
System.out.println(c);  // Output: 硘

JSON:

{"text": "\u7858"}  // Value: 硘

Python:

char = '\u7858'
print(char)  # Output: 硘

Perl:

my $char = "\x{7858}";
print $char;  # Output: 硘

PHP:

$char = "\x{7858}";
echo $char;  // Output: 硘

Ruby:

char = "\u{7858}"
puts char  # Output: 硘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007858";  /* Display: 硘 */
}

HTML Decimal:

<p>HTML decimal: &#30808;</p>  <!-- Display: 硘 -->

HTML Hexadecimal:

<p>HTML hex: &#x7858;</p>  <!-- Display: 硘 -->

URL Encoding:

// 硘 URL encoding
https://unicodefinder.com/search.php?query=%E7%A1%98

Encodings

MD5:

4a5518292b60704f6bcc562582e938ce

SHA1:

99ec294316a188fb3b62a8d6f18248c534b281ee

Base64:

56GY