Unicode Finder

"硡" U+7861(CJK UNIFIED IDEOGRAPH-7861)

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

Programming

C
\u7861
JavaScript
\u7861
Java
\u7861
Json
\u7861
Python
\u7861
Perl
\x{7861}
PHP
\x{7861}
Ruby
\u{7861}
Rust
\u{7861}
Go
\u7861

Web

CSS
\007861
HtmlDecimal
硡
HtmlHexadecimal
硡
Url
%E7%A1%A1

Code

MD5
500029d8012854cb06d33effef615e97
Sha1
0e746c89a1726c852a0e89faac2a794cb9824ae5
Base64
56Gh

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7861';
console.log(char);  // Output: 硡

Java:

char c = '\u7861';
System.out.println(c);  // Output: 硡

JSON:

{"text": "\u7861"}  // Value: 硡

Python:

char = '\u7861'
print(char)  # Output: 硡

Perl:

my $char = "\x{7861}";
print $char;  # Output: 硡

PHP:

$char = "\x{7861}";
echo $char;  // Output: 硡

Ruby:

char = "\u{7861}"
puts char  # Output: 硡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007861";  /* Display: 硡 */
}

HTML Decimal:

<p>HTML decimal: &#30817;</p>  <!-- Display: 硡 -->

HTML Hexadecimal:

<p>HTML hex: &#x7861;</p>  <!-- Display: 硡 -->

URL Encoding:

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

Encodings

MD5:

500029d8012854cb06d33effef615e97

SHA1:

0e746c89a1726c852a0e89faac2a794cb9824ae5

Base64:

56Gh