Unicode Finder

"硑" U+7851(CJK UNIFIED IDEOGRAPH-7851)

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

Programming

C
\u7851
JavaScript
\u7851
Java
\u7851
Json
\u7851
Python
\u7851
Perl
\x{7851}
PHP
\x{7851}
Ruby
\u{7851}
Rust
\u{7851}
Go
\u7851

Web

CSS
\007851
HtmlDecimal
硑
HtmlHexadecimal
硑
Url
%E7%A1%91

Code

MD5
d5b4220ed7303d1fcd1cac15bf7280a7
Sha1
4ab5bfcc1d7ece42e9bf6faf0699eb85616a14d9
Base64
56GR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7851';
console.log(char);  // Output: 硑

Java:

char c = '\u7851';
System.out.println(c);  // Output: 硑

JSON:

{"text": "\u7851"}  // Value: 硑

Python:

char = '\u7851'
print(char)  # Output: 硑

Perl:

my $char = "\x{7851}";
print $char;  # Output: 硑

PHP:

$char = "\x{7851}";
echo $char;  // Output: 硑

Ruby:

char = "\u{7851}"
puts char  # Output: 硑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007851";  /* Display: 硑 */
}

HTML Decimal:

<p>HTML decimal: &#30801;</p>  <!-- Display: 硑 -->

HTML Hexadecimal:

<p>HTML hex: &#x7851;</p>  <!-- Display: 硑 -->

URL Encoding:

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

Encodings

MD5:

d5b4220ed7303d1fcd1cac15bf7280a7

SHA1:

4ab5bfcc1d7ece42e9bf6faf0699eb85616a14d9

Base64:

56GR