Unicode Finder

"篭" U+7BED(CJK UNIFIED IDEOGRAPH-7BED)

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

Programming

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

Web

CSS
\007BED
HtmlDecimal
篭
HtmlHexadecimal
篭
Url
%E7%AF%AD

Code

MD5
89e9d7bdae748f9b2fa1d00dcff40d39
Sha1
3229c67d0ea6767b13cc19649e83597388f7dcd1
Base64
56+t

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7BED';
console.log(char);  // Output: 篭

Java:

char c = '\u7BED';
System.out.println(c);  // Output: 篭

JSON:

{"text": "\u7BED"}  // Value: 篭

Python:

char = '\u7BED'
print(char)  # Output: 篭

Perl:

my $char = "\x{7BED}";
print $char;  # Output: 篭

PHP:

$char = "\x{7BED}";
echo $char;  // Output: 篭

Ruby:

char = "\u{7BED}"
puts char  # Output: 篭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31725;</p>  <!-- Display: 篭 -->

HTML Hexadecimal:

<p>HTML hex: &#x7BED;</p>  <!-- Display: 篭 -->

URL Encoding:

// 篭 URL encoding
https://unicodefinder.com/search.php?query=%E7%AF%AD

Encodings

MD5:

89e9d7bdae748f9b2fa1d00dcff40d39

SHA1:

3229c67d0ea6767b13cc19649e83597388f7dcd1

Base64:

56+t