Unicode Finder

"筚" U+7B5A(CJK UNIFIED IDEOGRAPH-7B5A)

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

Programming

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

Web

CSS
\007B5A
HtmlDecimal
筚
HtmlHexadecimal
筚
Url
%E7%AD%9A

Code

MD5
236a605963ef1a47db9d48cd4ad32717
Sha1
3395f3a4f683252ccbf01e0a395f4ca04e8f0405
Base64
562a

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7B5A';
console.log(char);  // Output: 筚

Java:

char c = '\u7B5A';
System.out.println(c);  // Output: 筚

JSON:

{"text": "\u7B5A"}  // Value: 筚

Python:

char = '\u7B5A'
print(char)  # Output: 筚

Perl:

my $char = "\x{7B5A}";
print $char;  # Output: 筚

PHP:

$char = "\x{7B5A}";
echo $char;  // Output: 筚

Ruby:

char = "\u{7B5A}"
puts char  # Output: 筚

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31578;</p>  <!-- Display: 筚 -->

HTML Hexadecimal:

<p>HTML hex: &#x7B5A;</p>  <!-- Display: 筚 -->

URL Encoding:

// 筚 URL encoding
https://unicodefinder.com/search.php?query=%E7%AD%9A

Encodings

MD5:

236a605963ef1a47db9d48cd4ad32717

SHA1:

3395f3a4f683252ccbf01e0a395f4ca04e8f0405

Base64:

562a