Unicode Finder

"灁" U+7041(CJK UNIFIED IDEOGRAPH-7041)

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

Programming

C
\u7041
JavaScript
\u7041
Java
\u7041
Json
\u7041
Python
\u7041
Perl
\x{7041}
PHP
\x{7041}
Ruby
\u{7041}
Rust
\u{7041}
Go
\u7041

Web

CSS
\007041
HtmlDecimal
灁
HtmlHexadecimal
灁
Url
%E7%81%81

Code

MD5
93da12b0354e4ae0689c522ae3ab6ad0
Sha1
fff65f1ad62e0161c7d7f9c77ba252f626936754
Base64
54GB

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7041';
console.log(char);  // Output: 灁

Java:

char c = '\u7041';
System.out.println(c);  // Output: 灁

JSON:

{"text": "\u7041"}  // Value: 灁

Python:

char = '\u7041'
print(char)  # Output: 灁

Perl:

my $char = "\x{7041}";
print $char;  # Output: 灁

PHP:

$char = "\x{7041}";
echo $char;  // Output: 灁

Ruby:

char = "\u{7041}"
puts char  # Output: 灁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007041";  /* Display: 灁 */
}

HTML Decimal:

<p>HTML decimal: &#28737;</p>  <!-- Display: 灁 -->

HTML Hexadecimal:

<p>HTML hex: &#x7041;</p>  <!-- Display: 灁 -->

URL Encoding:

// 灁 URL encoding
https://unicodefinder.com/search.php?query=%E7%81%81

Encodings

MD5:

93da12b0354e4ae0689c522ae3ab6ad0

SHA1:

fff65f1ad62e0161c7d7f9c77ba252f626936754

Base64:

54GB