Unicode Finder

"箧" U+7BA7(CJK UNIFIED IDEOGRAPH-7BA7)

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

Programming

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

Web

CSS
\007BA7
HtmlDecimal
箧
HtmlHexadecimal
箧
Url
%E7%AE%A7

Code

MD5
0a919fdbb6185e0ee004773b0fef89f1
Sha1
e4cfdd8d33b380397006588ae309a244329686b4
Base64
566n

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7BA7';
console.log(char);  // Output: 箧

Java:

char c = '\u7BA7';
System.out.println(c);  // Output: 箧

JSON:

{"text": "\u7BA7"}  // Value: 箧

Python:

char = '\u7BA7'
print(char)  # Output: 箧

Perl:

my $char = "\x{7BA7}";
print $char;  # Output: 箧

PHP:

$char = "\x{7BA7}";
echo $char;  // Output: 箧

Ruby:

char = "\u{7BA7}"
puts char  # Output: 箧

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31655;</p>  <!-- Display: 箧 -->

HTML Hexadecimal:

<p>HTML hex: &#x7BA7;</p>  <!-- Display: 箧 -->

URL Encoding:

// 箧 URL encoding
https://unicodefinder.com/search.php?query=%E7%AE%A7

Encodings

MD5:

0a919fdbb6185e0ee004773b0fef89f1

SHA1:

e4cfdd8d33b380397006588ae309a244329686b4

Base64:

566n