Unicode Finder

"硗" U+7857(CJK UNIFIED IDEOGRAPH-7857)

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

Programming

C
\u7857
JavaScript
\u7857
Java
\u7857
Json
\u7857
Python
\u7857
Perl
\x{7857}
PHP
\x{7857}
Ruby
\u{7857}
Rust
\u{7857}
Go
\u7857

Web

CSS
\007857
HtmlDecimal
硗
HtmlHexadecimal
硗
Url
%E7%A1%97

Code

MD5
bd7c5fae975453ecebf4b6bfbd5ac131
Sha1
562dadace743a8ecabc832696ec915164ae3010d
Base64
56GX

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7857';
console.log(char);  // Output: 硗

Java:

char c = '\u7857';
System.out.println(c);  // Output: 硗

JSON:

{"text": "\u7857"}  // Value: 硗

Python:

char = '\u7857'
print(char)  # Output: 硗

Perl:

my $char = "\x{7857}";
print $char;  # Output: 硗

PHP:

$char = "\x{7857}";
echo $char;  // Output: 硗

Ruby:

char = "\u{7857}"
puts char  # Output: 硗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007857";  /* Display: 硗 */
}

HTML Decimal:

<p>HTML decimal: &#30807;</p>  <!-- Display: 硗 -->

HTML Hexadecimal:

<p>HTML hex: &#x7857;</p>  <!-- Display: 硗 -->

URL Encoding:

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

Encodings

MD5:

bd7c5fae975453ecebf4b6bfbd5ac131

SHA1:

562dadace743a8ecabc832696ec915164ae3010d

Base64:

56GX