Unicode Finder

"硧" U+7867(CJK UNIFIED IDEOGRAPH-7867)

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

Programming

C
\u7867
JavaScript
\u7867
Java
\u7867
Json
\u7867
Python
\u7867
Perl
\x{7867}
PHP
\x{7867}
Ruby
\u{7867}
Rust
\u{7867}
Go
\u7867

Web

CSS
\007867
HtmlDecimal
硧
HtmlHexadecimal
硧
Url
%E7%A1%A7

Code

MD5
c42269c7ae724faded5e00908f96893d
Sha1
9fddd65bc4f92b5bea0cba2319359d1b2e555911
Base64
56Gn

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7867';
console.log(char);  // Output: 硧

Java:

char c = '\u7867';
System.out.println(c);  // Output: 硧

JSON:

{"text": "\u7867"}  // Value: 硧

Python:

char = '\u7867'
print(char)  # Output: 硧

Perl:

my $char = "\x{7867}";
print $char;  # Output: 硧

PHP:

$char = "\x{7867}";
echo $char;  // Output: 硧

Ruby:

char = "\u{7867}"
puts char  # Output: 硧

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007867";  /* Display: 硧 */
}

HTML Decimal:

<p>HTML decimal: &#30823;</p>  <!-- Display: 硧 -->

HTML Hexadecimal:

<p>HTML hex: &#x7867;</p>  <!-- Display: 硧 -->

URL Encoding:

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

Encodings

MD5:

c42269c7ae724faded5e00908f96893d

SHA1:

9fddd65bc4f92b5bea0cba2319359d1b2e555911

Base64:

56Gn