Unicode Finder

"箦" U+7BA6(CJK UNIFIED IDEOGRAPH-7BA6)

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

Programming

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

Web

CSS
\007BA6
HtmlDecimal
箦
HtmlHexadecimal
箦
Url
%E7%AE%A6

Code

MD5
9fab568c48879ca2a27eec37ee589013
Sha1
ae4940eb9667e3a806889a357a62b9af4459926e
Base64
566m

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7BA6';
console.log(char);  // Output: 箦

Java:

char c = '\u7BA6';
System.out.println(c);  // Output: 箦

JSON:

{"text": "\u7BA6"}  // Value: 箦

Python:

char = '\u7BA6'
print(char)  # Output: 箦

Perl:

my $char = "\x{7BA6}";
print $char;  # Output: 箦

PHP:

$char = "\x{7BA6}";
echo $char;  // Output: 箦

Ruby:

char = "\u{7BA6}"
puts char  # Output: 箦

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31654;</p>  <!-- Display: 箦 -->

HTML Hexadecimal:

<p>HTML hex: &#x7BA6;</p>  <!-- Display: 箦 -->

URL Encoding:

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

Encodings

MD5:

9fab568c48879ca2a27eec37ee589013

SHA1:

ae4940eb9667e3a806889a357a62b9af4459926e

Base64:

566m