Unicode Finder

"箎" U+7B8E(CJK UNIFIED IDEOGRAPH-7B8E)

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

Programming

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

Web

CSS
\007B8E
HtmlDecimal
箎
HtmlHexadecimal
箎
Url
%E7%AE%8E

Code

MD5
ac261c12a28117f18dd95c6f1bf24004
Sha1
b797cc44689da5bc873290aed7abefcd97899ef5
Base64
566O

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7B8E';
console.log(char);  // Output: 箎

Java:

char c = '\u7B8E';
System.out.println(c);  // Output: 箎

JSON:

{"text": "\u7B8E"}  // Value: 箎

Python:

char = '\u7B8E'
print(char)  # Output: 箎

Perl:

my $char = "\x{7B8E}";
print $char;  # Output: 箎

PHP:

$char = "\x{7B8E}";
echo $char;  // Output: 箎

Ruby:

char = "\u{7B8E}"
puts char  # Output: 箎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31630;</p>  <!-- Display: 箎 -->

HTML Hexadecimal:

<p>HTML hex: &#x7B8E;</p>  <!-- Display: 箎 -->

URL Encoding:

// 箎 URL encoding
https://unicodefinder.com/search.php?query=%E7%AE%8E

Encodings

MD5:

ac261c12a28117f18dd95c6f1bf24004

SHA1:

b797cc44689da5bc873290aed7abefcd97899ef5

Base64:

566O