Unicode Finder

"筙" U+7B59(CJK UNIFIED IDEOGRAPH-7B59)

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

Programming

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

Web

CSS
\007B59
HtmlDecimal
筙
HtmlHexadecimal
筙
Url
%E7%AD%99

Code

MD5
d39503cab3e5bf10c0cc67ac144409ae
Sha1
ef99e8aedd94978f2cdd2592495b60c49051b718
Base64
562Z

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7B59';
console.log(char);  // Output: 筙

Java:

char c = '\u7B59';
System.out.println(c);  // Output: 筙

JSON:

{"text": "\u7B59"}  // Value: 筙

Python:

char = '\u7B59'
print(char)  # Output: 筙

Perl:

my $char = "\x{7B59}";
print $char;  # Output: 筙

PHP:

$char = "\x{7B59}";
echo $char;  // Output: 筙

Ruby:

char = "\u{7B59}"
puts char  # Output: 筙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31577;</p>  <!-- Display: 筙 -->

HTML Hexadecimal:

<p>HTML hex: &#x7B59;</p>  <!-- Display: 筙 -->

URL Encoding:

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

Encodings

MD5:

d39503cab3e5bf10c0cc67ac144409ae

SHA1:

ef99e8aedd94978f2cdd2592495b60c49051b718

Base64:

562Z