Unicode Finder

"笯" U+7B2F(CJK UNIFIED IDEOGRAPH-7B2F)

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

Programming

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

Web

CSS
\007B2F
HtmlDecimal
笯
HtmlHexadecimal
笯
Url
%E7%AC%AF

Code

MD5
de17ae8e336d18e161e39a7af6918fa7
Sha1
7e58445bfabff2f6da03c081d034bf8447c84e1e
Base64
56yv

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7B2F';
console.log(char);  // Output: 笯

Java:

char c = '\u7B2F';
System.out.println(c);  // Output: 笯

JSON:

{"text": "\u7B2F"}  // Value: 笯

Python:

char = '\u7B2F'
print(char)  # Output: 笯

Perl:

my $char = "\x{7B2F}";
print $char;  # Output: 笯

PHP:

$char = "\x{7B2F}";
echo $char;  // Output: 笯

Ruby:

char = "\u{7B2F}"
puts char  # Output: 笯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31535;</p>  <!-- Display: 笯 -->

HTML Hexadecimal:

<p>HTML hex: &#x7B2F;</p>  <!-- Display: 笯 -->

URL Encoding:

// 笯 URL encoding
https://unicodefinder.com/search.php?query=%E7%AC%AF

Encodings

MD5:

de17ae8e336d18e161e39a7af6918fa7

SHA1:

7e58445bfabff2f6da03c081d034bf8447c84e1e

Base64:

56yv