Unicode Finder

"罃" U+7F43(CJK UNIFIED IDEOGRAPH-7F43)

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

Programming

C
\u7F43
JavaScript
\u7F43
Java
\u7F43
Json
\u7F43
Python
\u7F43
Perl
\x{7F43}
PHP
\x{7F43}
Ruby
\u{7F43}
Rust
\u{7F43}
Go
\u7F43

Web

CSS
\007F43
HtmlDecimal
罃
HtmlHexadecimal
罃
Url
%E7%BD%83

Code

MD5
32ed0fd5413d360e5905c2c1539b905a
Sha1
85f4b4f25b45c760d68fefdb367a33131effc0fb
Base64
572D

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7F43';
console.log(char);  // Output: 罃

Java:

char c = '\u7F43';
System.out.println(c);  // Output: 罃

JSON:

{"text": "\u7F43"}  // Value: 罃

Python:

char = '\u7F43'
print(char)  # Output: 罃

Perl:

my $char = "\x{7F43}";
print $char;  # Output: 罃

PHP:

$char = "\x{7F43}";
echo $char;  // Output: 罃

Ruby:

char = "\u{7F43}"
puts char  # Output: 罃

Rust:

let c = '\u{7F43}';
println!("{}", c);  // Output: 罃

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007F43";  /* Display: 罃 */
}

HTML Decimal:

<p>HTML decimal: &#32579;</p>  <!-- Display: 罃 -->

HTML Hexadecimal:

<p>HTML hex: &#x7F43;</p>  <!-- Display: 罃 -->

URL Encoding:

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

Encodings

MD5:

32ed0fd5413d360e5905c2c1539b905a

SHA1:

85f4b4f25b45c760d68fefdb367a33131effc0fb

Base64:

572D