Unicode Finder

"罔" U+7F54(CJK UNIFIED IDEOGRAPH-7F54)

U+7F54
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7F54

Programming

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

Web

CSS
\007F54
HtmlDecimal
罔
HtmlHexadecimal
罔
Url
%E7%BD%94

Code

MD5
11f7ddc95d80fcad5869871a2da5d74e
Sha1
3d8a385330a066dd3b517da7d3619267c5c14a78
Base64
572U

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7F54';
console.log(char);  // Output: 罔

Java:

char c = '\u7F54';
System.out.println(c);  // Output: 罔

JSON:

{"text": "\u7F54"}  // Value: 罔

Python:

char = '\u7F54'
print(char)  # Output: 罔

Perl:

my $char = "\x{7F54}";
print $char;  # Output: 罔

PHP:

$char = "\x{7F54}";
echo $char;  // Output: 罔

Ruby:

char = "\u{7F54}"
puts char  # Output: 罔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32596;</p>  <!-- Display: 罔 -->

HTML Hexadecimal:

<p>HTML hex: &#x7F54;</p>  <!-- Display: 罔 -->

URL Encoding:

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

Encodings

MD5:

11f7ddc95d80fcad5869871a2da5d74e

SHA1:

3d8a385330a066dd3b517da7d3619267c5c14a78

Base64:

572U