Unicode Finder

"箊" U+7B8A(CJK UNIFIED IDEOGRAPH-7B8A)

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

Programming

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

Web

CSS
\007B8A
HtmlDecimal
箊
HtmlHexadecimal
箊
Url
%E7%AE%8A

Code

MD5
0c70484bc049ca0700ef15cb4e1fac0e
Sha1
3b4ca49a52b146515932f2cf7ae58961e544180b
Base64
566K

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7B8A';
console.log(char);  // Output: 箊

Java:

char c = '\u7B8A';
System.out.println(c);  // Output: 箊

JSON:

{"text": "\u7B8A"}  // Value: 箊

Python:

char = '\u7B8A'
print(char)  # Output: 箊

Perl:

my $char = "\x{7B8A}";
print $char;  # Output: 箊

PHP:

$char = "\x{7B8A}";
echo $char;  // Output: 箊

Ruby:

char = "\u{7B8A}"
puts char  # Output: 箊

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31626;</p>  <!-- Display: 箊 -->

HTML Hexadecimal:

<p>HTML hex: &#x7B8A;</p>  <!-- Display: 箊 -->

URL Encoding:

// 箊 URL encoding
https://unicodefinder.com/search.php?query=%E7%AE%8A

Encodings

MD5:

0c70484bc049ca0700ef15cb4e1fac0e

SHA1:

3b4ca49a52b146515932f2cf7ae58961e544180b

Base64:

566K