Unicode Finder

"箷" U+7BB7(CJK UNIFIED IDEOGRAPH-7BB7)

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

Programming

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

Web

CSS
\007BB7
HtmlDecimal
箷
HtmlHexadecimal
箷
Url
%E7%AE%B7

Code

MD5
b4d9c88deb0885d4b633085f6e667ed2
Sha1
8d9037081d91269ff168d8bf9993d9b95a46b1be
Base64
5663

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7BB7';
console.log(char);  // Output: 箷

Java:

char c = '\u7BB7';
System.out.println(c);  // Output: 箷

JSON:

{"text": "\u7BB7"}  // Value: 箷

Python:

char = '\u7BB7'
print(char)  # Output: 箷

Perl:

my $char = "\x{7BB7}";
print $char;  # Output: 箷

PHP:

$char = "\x{7BB7}";
echo $char;  // Output: 箷

Ruby:

char = "\u{7BB7}"
puts char  # Output: 箷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31671;</p>  <!-- Display: 箷 -->

HTML Hexadecimal:

<p>HTML hex: &#x7BB7;</p>  <!-- Display: 箷 -->

URL Encoding:

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

Encodings

MD5:

b4d9c88deb0885d4b633085f6e667ed2

SHA1:

8d9037081d91269ff168d8bf9993d9b95a46b1be

Base64:

5663