Unicode Finder

"箼" U+7BBC(CJK UNIFIED IDEOGRAPH-7BBC)

U+7BBC
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-7BBC

Programming

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

Web

CSS
\007BBC
HtmlDecimal
箼
HtmlHexadecimal
箼
Url
%E7%AE%BC

Code

MD5
c546249598d229c7ef4e9a8ddb8213ae
Sha1
3f9c7640ca86b53b889a0fc68b4b56a968aac503
Base64
5668

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7BBC';
console.log(char);  // Output: 箼

Java:

char c = '\u7BBC';
System.out.println(c);  // Output: 箼

JSON:

{"text": "\u7BBC"}  // Value: 箼

Python:

char = '\u7BBC'
print(char)  # Output: 箼

Perl:

my $char = "\x{7BBC}";
print $char;  # Output: 箼

PHP:

$char = "\x{7BBC}";
echo $char;  // Output: 箼

Ruby:

char = "\u{7BBC}"
puts char  # Output: 箼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31676;</p>  <!-- Display: 箼 -->

HTML Hexadecimal:

<p>HTML hex: &#x7BBC;</p>  <!-- Display: 箼 -->

URL Encoding:

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

Encodings

MD5:

c546249598d229c7ef4e9a8ddb8213ae

SHA1:

3f9c7640ca86b53b889a0fc68b4b56a968aac503

Base64:

5668