Unicode Finder

"箽" U+7BBD(CJK UNIFIED IDEOGRAPH-7BBD)

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

Programming

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

Web

CSS
\007BBD
HtmlDecimal
箽
HtmlHexadecimal
箽
Url
%E7%AE%BD

Code

MD5
3eeba3973e1ee799ac1fc99a313891ce
Sha1
dbf12bfc9eb84d0e7c067fed3633182979444b0c
Base64
5669

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7BBD';
console.log(char);  // Output: 箽

Java:

char c = '\u7BBD';
System.out.println(c);  // Output: 箽

JSON:

{"text": "\u7BBD"}  // Value: 箽

Python:

char = '\u7BBD'
print(char)  # Output: 箽

Perl:

my $char = "\x{7BBD}";
print $char;  # Output: 箽

PHP:

$char = "\x{7BBD}";
echo $char;  // Output: 箽

Ruby:

char = "\u{7BBD}"
puts char  # Output: 箽

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31677;</p>  <!-- Display: 箽 -->

HTML Hexadecimal:

<p>HTML hex: &#x7BBD;</p>  <!-- Display: 箽 -->

URL Encoding:

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

Encodings

MD5:

3eeba3973e1ee799ac1fc99a313891ce

SHA1:

dbf12bfc9eb84d0e7c067fed3633182979444b0c

Base64:

5669