Unicode Finder

"硕" U+7855(CJK UNIFIED IDEOGRAPH-7855)

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

Programming

C
\u7855
JavaScript
\u7855
Java
\u7855
Json
\u7855
Python
\u7855
Perl
\x{7855}
PHP
\x{7855}
Ruby
\u{7855}
Rust
\u{7855}
Go
\u7855

Web

CSS
\007855
HtmlDecimal
硕
HtmlHexadecimal
硕
Url
%E7%A1%95

Code

MD5
fa6ef9851aedd70d0d90150a155d3f0f
Sha1
29d0553a3739a51ca4c09538577b656e491f52c2
Base64
56GV

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7855';
console.log(char);  // Output: 硕

Java:

char c = '\u7855';
System.out.println(c);  // Output: 硕

JSON:

{"text": "\u7855"}  // Value: 硕

Python:

char = '\u7855'
print(char)  # Output: 硕

Perl:

my $char = "\x{7855}";
print $char;  # Output: 硕

PHP:

$char = "\x{7855}";
echo $char;  // Output: 硕

Ruby:

char = "\u{7855}"
puts char  # Output: 硕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007855";  /* Display: 硕 */
}

HTML Decimal:

<p>HTML decimal: &#30805;</p>  <!-- Display: 硕 -->

HTML Hexadecimal:

<p>HTML hex: &#x7855;</p>  <!-- Display: 硕 -->

URL Encoding:

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

Encodings

MD5:

fa6ef9851aedd70d0d90150a155d3f0f

SHA1:

29d0553a3739a51ca4c09538577b656e491f52c2

Base64:

56GV