Unicode Finder

"箰" U+7BB0(CJK UNIFIED IDEOGRAPH-7BB0)

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

Programming

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

Web

CSS
\007BB0
HtmlDecimal
箰
HtmlHexadecimal
箰
Url
%E7%AE%B0

Code

MD5
01c6f276e97778807aa04e1b7465b765
Sha1
bcf169bc8586f0839713166be1eedd3149c057ee
Base64
566w

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7BB0';
console.log(char);  // Output: 箰

Java:

char c = '\u7BB0';
System.out.println(c);  // Output: 箰

JSON:

{"text": "\u7BB0"}  // Value: 箰

Python:

char = '\u7BB0'
print(char)  # Output: 箰

Perl:

my $char = "\x{7BB0}";
print $char;  # Output: 箰

PHP:

$char = "\x{7BB0}";
echo $char;  // Output: 箰

Ruby:

char = "\u{7BB0}"
puts char  # Output: 箰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31664;</p>  <!-- Display: 箰 -->

HTML Hexadecimal:

<p>HTML hex: &#x7BB0;</p>  <!-- Display: 箰 -->

URL Encoding:

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

Encodings

MD5:

01c6f276e97778807aa04e1b7465b765

SHA1:

bcf169bc8586f0839713166be1eedd3149c057ee

Base64:

566w