Unicode Finder

"箾" U+7BBE(CJK UNIFIED IDEOGRAPH-7BBE)

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

Programming

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

Web

CSS
\007BBE
HtmlDecimal
箾
HtmlHexadecimal
箾
Url
%E7%AE%BE

Code

MD5
45e1663073b9e2be61a4d7e8a5e6bcb5
Sha1
0825b715f4231845ab29455a7abf8d2be84efcf8
Base64
566+

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7BBE';
console.log(char);  // Output: 箾

Java:

char c = '\u7BBE';
System.out.println(c);  // Output: 箾

JSON:

{"text": "\u7BBE"}  // Value: 箾

Python:

char = '\u7BBE'
print(char)  # Output: 箾

Perl:

my $char = "\x{7BBE}";
print $char;  # Output: 箾

PHP:

$char = "\x{7BBE}";
echo $char;  // Output: 箾

Ruby:

char = "\u{7BBE}"
puts char  # Output: 箾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31678;</p>  <!-- Display: 箾 -->

HTML Hexadecimal:

<p>HTML hex: &#x7BBE;</p>  <!-- Display: 箾 -->

URL Encoding:

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

Encodings

MD5:

45e1663073b9e2be61a4d7e8a5e6bcb5

SHA1:

0825b715f4231845ab29455a7abf8d2be84efcf8

Base64:

566+