Unicode Finder

"箸" U+7BB8(CJK UNIFIED IDEOGRAPH-7BB8)

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

Programming

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

Web

CSS
\007BB8
HtmlDecimal
箸
HtmlHexadecimal
箸
Url
%E7%AE%B8

Code

MD5
1a23d86a3d1a090a567a80ace34bcf1d
Sha1
692fc057a2cc5a590c825a18026173c9dd1c5329
Base64
5664

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7BB8';
console.log(char);  // Output: 箸

Java:

char c = '\u7BB8';
System.out.println(c);  // Output: 箸

JSON:

{"text": "\u7BB8"}  // Value: 箸

Python:

char = '\u7BB8'
print(char)  # Output: 箸

Perl:

my $char = "\x{7BB8}";
print $char;  # Output: 箸

PHP:

$char = "\x{7BB8}";
echo $char;  // Output: 箸

Ruby:

char = "\u{7BB8}"
puts char  # Output: 箸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31672;</p>  <!-- Display: 箸 -->

HTML Hexadecimal:

<p>HTML hex: &#x7BB8;</p>  <!-- Display: 箸 -->

URL Encoding:

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

Encodings

MD5:

1a23d86a3d1a090a567a80ace34bcf1d

SHA1:

692fc057a2cc5a590c825a18026173c9dd1c5329

Base64:

5664