Unicode Finder

"篬" U+7BEC(CJK UNIFIED IDEOGRAPH-7BEC)

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

Programming

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

Web

CSS
\007BEC
HtmlDecimal
篬
HtmlHexadecimal
篬
Url
%E7%AF%AC

Code

MD5
17ebe138206021efc2c78b0ddc73ddc0
Sha1
00d2dba39d440ca29f4835003b25b89719963689
Base64
56+s

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7BEC';
console.log(char);  // Output: 篬

Java:

char c = '\u7BEC';
System.out.println(c);  // Output: 篬

JSON:

{"text": "\u7BEC"}  // Value: 篬

Python:

char = '\u7BEC'
print(char)  # Output: 篬

Perl:

my $char = "\x{7BEC}";
print $char;  # Output: 篬

PHP:

$char = "\x{7BEC}";
echo $char;  // Output: 篬

Ruby:

char = "\u{7BEC}"
puts char  # Output: 篬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31724;</p>  <!-- Display: 篬 -->

HTML Hexadecimal:

<p>HTML hex: &#x7BEC;</p>  <!-- Display: 篬 -->

URL Encoding:

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

Encodings

MD5:

17ebe138206021efc2c78b0ddc73ddc0

SHA1:

00d2dba39d440ca29f4835003b25b89719963689

Base64:

56+s