Unicode Finder

"碄" U+7884(CJK UNIFIED IDEOGRAPH-7884)

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

Programming

C
\u7884
JavaScript
\u7884
Java
\u7884
Json
\u7884
Python
\u7884
Perl
\x{7884}
PHP
\x{7884}
Ruby
\u{7884}
Rust
\u{7884}
Go
\u7884

Web

CSS
\007884
HtmlDecimal
碄
HtmlHexadecimal
碄
Url
%E7%A2%84

Code

MD5
d88771fc721bde40d347257e9bdcdbe9
Sha1
2f04513129ed57e4101907f1322dc972e4c34010
Base64
56KE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7884';
console.log(char);  // Output: 碄

Java:

char c = '\u7884';
System.out.println(c);  // Output: 碄

JSON:

{"text": "\u7884"}  // Value: 碄

Python:

char = '\u7884'
print(char)  # Output: 碄

Perl:

my $char = "\x{7884}";
print $char;  # Output: 碄

PHP:

$char = "\x{7884}";
echo $char;  // Output: 碄

Ruby:

char = "\u{7884}"
puts char  # Output: 碄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007884";  /* Display: 碄 */
}

HTML Decimal:

<p>HTML decimal: &#30852;</p>  <!-- Display: 碄 -->

HTML Hexadecimal:

<p>HTML hex: &#x7884;</p>  <!-- Display: 碄 -->

URL Encoding:

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

Encodings

MD5:

d88771fc721bde40d347257e9bdcdbe9

SHA1:

2f04513129ed57e4101907f1322dc972e4c34010

Base64:

56KE