Unicode Finder

"矽" U+77FD(CJK UNIFIED IDEOGRAPH-77FD)

U+77FD
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-77FD

Programming

C
\u77FD
JavaScript
\u77FD
Java
\u77FD
Json
\u77FD
Python
\u77FD
Perl
\x{77FD}
PHP
\x{77FD}
Ruby
\u{77FD}
Rust
\u{77FD}
Go
\u77FD

Web

CSS
\0077FD
HtmlDecimal
矽
HtmlHexadecimal
矽
Url
%E7%9F%BD

Code

MD5
59c795930bac714c6450ad1e652fdf0f
Sha1
ccf1cd2d13796382cfe3961031f001820fcbaed4
Base64
55+9

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u77FD';
console.log(char);  // Output: 矽

Java:

char c = '\u77FD';
System.out.println(c);  // Output: 矽

JSON:

{"text": "\u77FD"}  // Value: 矽

Python:

char = '\u77FD'
print(char)  # Output: 矽

Perl:

my $char = "\x{77FD}";
print $char;  # Output: 矽

PHP:

$char = "\x{77FD}";
echo $char;  // Output: 矽

Ruby:

char = "\u{77FD}"
puts char  # Output: 矽

Rust:

let c = '\u{77FD}';
println!("{}", c);  // Output: 矽

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0077FD";  /* Display: 矽 */
}

HTML Decimal:

<p>HTML decimal: &#30717;</p>  <!-- Display: 矽 -->

HTML Hexadecimal:

<p>HTML hex: &#x77FD;</p>  <!-- Display: 矽 -->

URL Encoding:

// 矽 URL encoding
https://unicodefinder.com/search.php?query=%E7%9F%BD

Encodings

MD5:

59c795930bac714c6450ad1e652fdf0f

SHA1:

ccf1cd2d13796382cfe3961031f001820fcbaed4

Base64:

55+9