Unicode Finder

"硅" U+7845(CJK UNIFIED IDEOGRAPH-7845)

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

Programming

C
\u7845
JavaScript
\u7845
Java
\u7845
Json
\u7845
Python
\u7845
Perl
\x{7845}
PHP
\x{7845}
Ruby
\u{7845}
Rust
\u{7845}
Go
\u7845

Web

CSS
\007845
HtmlDecimal
硅
HtmlHexadecimal
硅
Url
%E7%A1%85

Code

MD5
ea57fddec3ec5e0db7f928e3ab12c164
Sha1
69d59af4064d4f36f4170f687b7d82f308baaea1
Base64
56GF

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7845';
console.log(char);  // Output: 硅

Java:

char c = '\u7845';
System.out.println(c);  // Output: 硅

JSON:

{"text": "\u7845"}  // Value: 硅

Python:

char = '\u7845'
print(char)  # Output: 硅

Perl:

my $char = "\x{7845}";
print $char;  # Output: 硅

PHP:

$char = "\x{7845}";
echo $char;  // Output: 硅

Ruby:

char = "\u{7845}"
puts char  # Output: 硅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007845";  /* Display: 硅 */
}

HTML Decimal:

<p>HTML decimal: &#30789;</p>  <!-- Display: 硅 -->

HTML Hexadecimal:

<p>HTML hex: &#x7845;</p>  <!-- Display: 硅 -->

URL Encoding:

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

Encodings

MD5:

ea57fddec3ec5e0db7f928e3ab12c164

SHA1:

69d59af4064d4f36f4170f687b7d82f308baaea1

Base64:

56GF