Unicode Finder

"箨" U+7BA8(CJK UNIFIED IDEOGRAPH-7BA8)

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

Programming

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

Web

CSS
\007BA8
HtmlDecimal
箨
HtmlHexadecimal
箨
Url
%E7%AE%A8

Code

MD5
0462a9876bf8ba8065e9d0daa873fde1
Sha1
6156aa97f58b15d2a05764fe93d0124bb5d73e70
Base64
566o

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7BA8';
console.log(char);  // Output: 箨

Java:

char c = '\u7BA8';
System.out.println(c);  // Output: 箨

JSON:

{"text": "\u7BA8"}  // Value: 箨

Python:

char = '\u7BA8'
print(char)  # Output: 箨

Perl:

my $char = "\x{7BA8}";
print $char;  # Output: 箨

PHP:

$char = "\x{7BA8}";
echo $char;  // Output: 箨

Ruby:

char = "\u{7BA8}"
puts char  # Output: 箨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31656;</p>  <!-- Display: 箨 -->

HTML Hexadecimal:

<p>HTML hex: &#x7BA8;</p>  <!-- Display: 箨 -->

URL Encoding:

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

Encodings

MD5:

0462a9876bf8ba8065e9d0daa873fde1

SHA1:

6156aa97f58b15d2a05764fe93d0124bb5d73e70

Base64:

566o