Unicode Finder

"硲" U+7872(CJK UNIFIED IDEOGRAPH-7872)

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

Programming

C
\u7872
JavaScript
\u7872
Java
\u7872
Json
\u7872
Python
\u7872
Perl
\x{7872}
PHP
\x{7872}
Ruby
\u{7872}
Rust
\u{7872}
Go
\u7872

Web

CSS
\007872
HtmlDecimal
硲
HtmlHexadecimal
硲
Url
%E7%A1%B2

Code

MD5
5d1684c1aafff28e452d45583c8be307
Sha1
5569602a822457b540e042fe7f2abb49a6788177
Base64
56Gy

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7872';
console.log(char);  // Output: 硲

Java:

char c = '\u7872';
System.out.println(c);  // Output: 硲

JSON:

{"text": "\u7872"}  // Value: 硲

Python:

char = '\u7872'
print(char)  # Output: 硲

Perl:

my $char = "\x{7872}";
print $char;  # Output: 硲

PHP:

$char = "\x{7872}";
echo $char;  // Output: 硲

Ruby:

char = "\u{7872}"
puts char  # Output: 硲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007872";  /* Display: 硲 */
}

HTML Decimal:

<p>HTML decimal: &#30834;</p>  <!-- Display: 硲 -->

HTML Hexadecimal:

<p>HTML hex: &#x7872;</p>  <!-- Display: 硲 -->

URL Encoding:

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

Encodings

MD5:

5d1684c1aafff28e452d45583c8be307

SHA1:

5569602a822457b540e042fe7f2abb49a6788177

Base64:

56Gy