Unicode Finder

"碅" U+7885(CJK UNIFIED IDEOGRAPH-7885)

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

Programming

C
\u7885
JavaScript
\u7885
Java
\u7885
Json
\u7885
Python
\u7885
Perl
\x{7885}
PHP
\x{7885}
Ruby
\u{7885}
Rust
\u{7885}
Go
\u7885

Web

CSS
\007885
HtmlDecimal
碅
HtmlHexadecimal
碅
Url
%E7%A2%85

Code

MD5
205c5ce3aaa8eaa5d2314cc056f20f2b
Sha1
0767fb949bfe7c89ea6f8ef7d70f436fc0d57c28
Base64
56KF

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7885';
console.log(char);  // Output: 碅

Java:

char c = '\u7885';
System.out.println(c);  // Output: 碅

JSON:

{"text": "\u7885"}  // Value: 碅

Python:

char = '\u7885'
print(char)  # Output: 碅

Perl:

my $char = "\x{7885}";
print $char;  # Output: 碅

PHP:

$char = "\x{7885}";
echo $char;  // Output: 碅

Ruby:

char = "\u{7885}"
puts char  # Output: 碅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007885";  /* Display: 碅 */
}

HTML Decimal:

<p>HTML decimal: &#30853;</p>  <!-- Display: 碅 -->

HTML Hexadecimal:

<p>HTML hex: &#x7885;</p>  <!-- Display: 碅 -->

URL Encoding:

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

Encodings

MD5:

205c5ce3aaa8eaa5d2314cc056f20f2b

SHA1:

0767fb949bfe7c89ea6f8ef7d70f436fc0d57c28

Base64:

56KF