Unicode Finder

"碑" U+7891(CJK UNIFIED IDEOGRAPH-7891)

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

Programming

C
\u7891
JavaScript
\u7891
Java
\u7891
Json
\u7891
Python
\u7891
Perl
\x{7891}
PHP
\x{7891}
Ruby
\u{7891}
Rust
\u{7891}
Go
\u7891

Web

CSS
\007891
HtmlDecimal
碑
HtmlHexadecimal
碑
Url
%E7%A2%91

Code

MD5
0aeb00a7c8fee7293e56cc283bd9a722
Sha1
d29c993e4306aad5eea23662864881921075878d
Base64
56KR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7891';
console.log(char);  // Output: 碑

Java:

char c = '\u7891';
System.out.println(c);  // Output: 碑

JSON:

{"text": "\u7891"}  // Value: 碑

Python:

char = '\u7891'
print(char)  # Output: 碑

Perl:

my $char = "\x{7891}";
print $char;  # Output: 碑

PHP:

$char = "\x{7891}";
echo $char;  // Output: 碑

Ruby:

char = "\u{7891}"
puts char  # Output: 碑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007891";  /* Display: 碑 */
}

HTML Decimal:

<p>HTML decimal: &#30865;</p>  <!-- Display: 碑 -->

HTML Hexadecimal:

<p>HTML hex: &#x7891;</p>  <!-- Display: 碑 -->

URL Encoding:

// 碑 URL encoding
https://unicodefinder.com/search.php?query=%E7%A2%91

Encodings

MD5:

0aeb00a7c8fee7293e56cc283bd9a722

SHA1:

d29c993e4306aad5eea23662864881921075878d

Base64:

56KR