Unicode Finder

"筇" U+7B47(CJK UNIFIED IDEOGRAPH-7B47)

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

Programming

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

Web

CSS
\007B47
HtmlDecimal
筇
HtmlHexadecimal
筇
Url
%E7%AD%87

Code

MD5
d0aece62f7b972e381bd086265139826
Sha1
3defda116c5e6ccaa4168bad67ad63d509b9e03b
Base64
562H

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7B47';
console.log(char);  // Output: 筇

Java:

char c = '\u7B47';
System.out.println(c);  // Output: 筇

JSON:

{"text": "\u7B47"}  // Value: 筇

Python:

char = '\u7B47'
print(char)  # Output: 筇

Perl:

my $char = "\x{7B47}";
print $char;  # Output: 筇

PHP:

$char = "\x{7B47}";
echo $char;  // Output: 筇

Ruby:

char = "\u{7B47}"
puts char  # Output: 筇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31559;</p>  <!-- Display: 筇 -->

HTML Hexadecimal:

<p>HTML hex: &#x7B47;</p>  <!-- Display: 筇 -->

URL Encoding:

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

Encodings

MD5:

d0aece62f7b972e381bd086265139826

SHA1:

3defda116c5e6ccaa4168bad67ad63d509b9e03b

Base64:

562H