Unicode Finder

"筒" U+7B52(CJK UNIFIED IDEOGRAPH-7B52)

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

Programming

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

Web

CSS
\007B52
HtmlDecimal
筒
HtmlHexadecimal
筒
Url
%E7%AD%92

Code

MD5
aa488129b561822eaeee8996985a9f90
Sha1
9e46dccf2649a91a0ab8a320983d3e8d1fb6da14
Base64
562S

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7B52';
console.log(char);  // Output: 筒

Java:

char c = '\u7B52';
System.out.println(c);  // Output: 筒

JSON:

{"text": "\u7B52"}  // Value: 筒

Python:

char = '\u7B52'
print(char)  # Output: 筒

Perl:

my $char = "\x{7B52}";
print $char;  # Output: 筒

PHP:

$char = "\x{7B52}";
echo $char;  // Output: 筒

Ruby:

char = "\u{7B52}"
puts char  # Output: 筒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31570;</p>  <!-- Display: 筒 -->

HTML Hexadecimal:

<p>HTML hex: &#x7B52;</p>  <!-- Display: 筒 -->

URL Encoding:

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

Encodings

MD5:

aa488129b561822eaeee8996985a9f90

SHA1:

9e46dccf2649a91a0ab8a320983d3e8d1fb6da14

Base64:

562S