Unicode Finder

"箻" U+7BBB(CJK UNIFIED IDEOGRAPH-7BBB)

U+7BBB
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7BBB

Programming

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

Web

CSS
\007BBB
HtmlDecimal
箻
HtmlHexadecimal
箻
Url
%E7%AE%BB

Code

MD5
638a6311ce72f3bba0196ec2552ef5c6
Sha1
cdc841d050ccd97786df8cb23e97824b6d807790
Base64
5667

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7BBB';
console.log(char);  // Output: 箻

Java:

char c = '\u7BBB';
System.out.println(c);  // Output: 箻

JSON:

{"text": "\u7BBB"}  // Value: 箻

Python:

char = '\u7BBB'
print(char)  # Output: 箻

Perl:

my $char = "\x{7BBB}";
print $char;  # Output: 箻

PHP:

$char = "\x{7BBB}";
echo $char;  // Output: 箻

Ruby:

char = "\u{7BBB}"
puts char  # Output: 箻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31675;</p>  <!-- Display: 箻 -->

HTML Hexadecimal:

<p>HTML hex: &#x7BBB;</p>  <!-- Display: 箻 -->

URL Encoding:

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

Encodings

MD5:

638a6311ce72f3bba0196ec2552ef5c6

SHA1:

cdc841d050ccd97786df8cb23e97824b6d807790

Base64:

5667