Unicode Finder

"硄" U+7844(CJK UNIFIED IDEOGRAPH-7844)

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

Programming

C
\u7844
JavaScript
\u7844
Java
\u7844
Json
\u7844
Python
\u7844
Perl
\x{7844}
PHP
\x{7844}
Ruby
\u{7844}
Rust
\u{7844}
Go
\u7844

Web

CSS
\007844
HtmlDecimal
硄
HtmlHexadecimal
硄
Url
%E7%A1%84

Code

MD5
f96bc47c6f56c6e097b897560a0f086c
Sha1
001f3c454b374bad1c78709c957ffbafc5f1a2d6
Base64
56GE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7844';
console.log(char);  // Output: 硄

Java:

char c = '\u7844';
System.out.println(c);  // Output: 硄

JSON:

{"text": "\u7844"}  // Value: 硄

Python:

char = '\u7844'
print(char)  # Output: 硄

Perl:

my $char = "\x{7844}";
print $char;  # Output: 硄

PHP:

$char = "\x{7844}";
echo $char;  // Output: 硄

Ruby:

char = "\u{7844}"
puts char  # Output: 硄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007844";  /* Display: 硄 */
}

HTML Decimal:

<p>HTML decimal: &#30788;</p>  <!-- Display: 硄 -->

HTML Hexadecimal:

<p>HTML hex: &#x7844;</p>  <!-- Display: 硄 -->

URL Encoding:

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

Encodings

MD5:

f96bc47c6f56c6e097b897560a0f086c

SHA1:

001f3c454b374bad1c78709c957ffbafc5f1a2d6

Base64:

56GE