Unicode Finder

"碃" U+7883(CJK UNIFIED IDEOGRAPH-7883)

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

Programming

C
\u7883
JavaScript
\u7883
Java
\u7883
Json
\u7883
Python
\u7883
Perl
\x{7883}
PHP
\x{7883}
Ruby
\u{7883}
Rust
\u{7883}
Go
\u7883

Web

CSS
\007883
HtmlDecimal
碃
HtmlHexadecimal
碃
Url
%E7%A2%83

Code

MD5
120da68aa5ced8a35b11f2b907c4ebad
Sha1
6e0b86995333f07db7e5fc23bd199e05e5d92e63
Base64
56KD

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7883';
console.log(char);  // Output: 碃

Java:

char c = '\u7883';
System.out.println(c);  // Output: 碃

JSON:

{"text": "\u7883"}  // Value: 碃

Python:

char = '\u7883'
print(char)  # Output: 碃

Perl:

my $char = "\x{7883}";
print $char;  # Output: 碃

PHP:

$char = "\x{7883}";
echo $char;  // Output: 碃

Ruby:

char = "\u{7883}"
puts char  # Output: 碃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007883";  /* Display: 碃 */
}

HTML Decimal:

<p>HTML decimal: &#30851;</p>  <!-- Display: 碃 -->

HTML Hexadecimal:

<p>HTML hex: &#x7883;</p>  <!-- Display: 碃 -->

URL Encoding:

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

Encodings

MD5:

120da68aa5ced8a35b11f2b907c4ebad

SHA1:

6e0b86995333f07db7e5fc23bd199e05e5d92e63

Base64:

56KD