Unicode Finder

"筃" U+7B43(CJK UNIFIED IDEOGRAPH-7B43)

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

Programming

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

Web

CSS
\007B43
HtmlDecimal
筃
HtmlHexadecimal
筃
Url
%E7%AD%83

Code

MD5
d575c602a90663027d259479335dd6d5
Sha1
81f8de30bfce68fcd1e71163e1e16f9f08daac65
Base64
562D

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7B43';
console.log(char);  // Output: 筃

Java:

char c = '\u7B43';
System.out.println(c);  // Output: 筃

JSON:

{"text": "\u7B43"}  // Value: 筃

Python:

char = '\u7B43'
print(char)  # Output: 筃

Perl:

my $char = "\x{7B43}";
print $char;  # Output: 筃

PHP:

$char = "\x{7B43}";
echo $char;  // Output: 筃

Ruby:

char = "\u{7B43}"
puts char  # Output: 筃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31555;</p>  <!-- Display: 筃 -->

HTML Hexadecimal:

<p>HTML hex: &#x7B43;</p>  <!-- Display: 筃 -->

URL Encoding:

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

Encodings

MD5:

d575c602a90663027d259479335dd6d5

SHA1:

81f8de30bfce68fcd1e71163e1e16f9f08daac65

Base64:

562D