Unicode Finder

"筗" U+7B57(CJK UNIFIED IDEOGRAPH-7B57)

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

Programming

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

Web

CSS
\007B57
HtmlDecimal
筗
HtmlHexadecimal
筗
Url
%E7%AD%97

Code

MD5
a141b586a35c38b06b9943dce17a273a
Sha1
60467e42cc78e08943f6c04e838abd318dbebebe
Base64
562X

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7B57';
console.log(char);  // Output: 筗

Java:

char c = '\u7B57';
System.out.println(c);  // Output: 筗

JSON:

{"text": "\u7B57"}  // Value: 筗

Python:

char = '\u7B57'
print(char)  # Output: 筗

Perl:

my $char = "\x{7B57}";
print $char;  # Output: 筗

PHP:

$char = "\x{7B57}";
echo $char;  // Output: 筗

Ruby:

char = "\u{7B57}"
puts char  # Output: 筗

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31575;</p>  <!-- Display: 筗 -->

HTML Hexadecimal:

<p>HTML hex: &#x7B57;</p>  <!-- Display: 筗 -->

URL Encoding:

// 筗 URL encoding
https://unicodefinder.com/search.php?query=%E7%AD%97

Encodings

MD5:

a141b586a35c38b06b9943dce17a273a

SHA1:

60467e42cc78e08943f6c04e838abd318dbebebe

Base64:

562X