Unicode Finder

"箞" U+7B9E(CJK UNIFIED IDEOGRAPH-7B9E)

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

Programming

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

Web

CSS
\007B9E
HtmlDecimal
箞
HtmlHexadecimal
箞
Url
%E7%AE%9E

Code

MD5
51b64f5eab116d85a8a04ba1bc95dd41
Sha1
2ae98a49c50cf22ba279b4ff84d9317cbb802dad
Base64
566e

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7B9E';
console.log(char);  // Output: 箞

Java:

char c = '\u7B9E';
System.out.println(c);  // Output: 箞

JSON:

{"text": "\u7B9E"}  // Value: 箞

Python:

char = '\u7B9E'
print(char)  # Output: 箞

Perl:

my $char = "\x{7B9E}";
print $char;  # Output: 箞

PHP:

$char = "\x{7B9E}";
echo $char;  // Output: 箞

Ruby:

char = "\u{7B9E}"
puts char  # Output: 箞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31646;</p>  <!-- Display: 箞 -->

HTML Hexadecimal:

<p>HTML hex: &#x7B9E;</p>  <!-- Display: 箞 -->

URL Encoding:

// 箞 URL encoding
https://unicodefinder.com/search.php?query=%E7%AE%9E

Encodings

MD5:

51b64f5eab116d85a8a04ba1bc95dd41

SHA1:

2ae98a49c50cf22ba279b4ff84d9317cbb802dad

Base64:

566e