Unicode Finder

"硤" U+7864(CJK UNIFIED IDEOGRAPH-7864)

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

Programming

C
\u7864
JavaScript
\u7864
Java
\u7864
Json
\u7864
Python
\u7864
Perl
\x{7864}
PHP
\x{7864}
Ruby
\u{7864}
Rust
\u{7864}
Go
\u7864

Web

CSS
\007864
HtmlDecimal
硤
HtmlHexadecimal
硤
Url
%E7%A1%A4

Code

MD5
87deaf3fb6b9c73a6183e5ab5d0f0755
Sha1
edcd8a50f8dd67d71d999d10d0b254b9158cc2f0
Base64
56Gk

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7864';
console.log(char);  // Output: 硤

Java:

char c = '\u7864';
System.out.println(c);  // Output: 硤

JSON:

{"text": "\u7864"}  // Value: 硤

Python:

char = '\u7864'
print(char)  # Output: 硤

Perl:

my $char = "\x{7864}";
print $char;  # Output: 硤

PHP:

$char = "\x{7864}";
echo $char;  // Output: 硤

Ruby:

char = "\u{7864}"
puts char  # Output: 硤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007864";  /* Display: 硤 */
}

HTML Decimal:

<p>HTML decimal: &#30820;</p>  <!-- Display: 硤 -->

HTML Hexadecimal:

<p>HTML hex: &#x7864;</p>  <!-- Display: 硤 -->

URL Encoding:

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

Encodings

MD5:

87deaf3fb6b9c73a6183e5ab5d0f0755

SHA1:

edcd8a50f8dd67d71d999d10d0b254b9158cc2f0

Base64:

56Gk