Unicode Finder

"篫" U+7BEB(CJK UNIFIED IDEOGRAPH-7BEB)

U+7BEB
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7BEB

Programming

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

Web

CSS
\007BEB
HtmlDecimal
篫
HtmlHexadecimal
篫
Url
%E7%AF%AB

Code

MD5
1b23650b8a6b6da8af28958944404cce
Sha1
aee85415528f37456704e80617f252e3e15bd388
Base64
56+r

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7BEB';
console.log(char);  // Output: 篫

Java:

char c = '\u7BEB';
System.out.println(c);  // Output: 篫

JSON:

{"text": "\u7BEB"}  // Value: 篫

Python:

char = '\u7BEB'
print(char)  # Output: 篫

Perl:

my $char = "\x{7BEB}";
print $char;  # Output: 篫

PHP:

$char = "\x{7BEB}";
echo $char;  // Output: 篫

Ruby:

char = "\u{7BEB}"
puts char  # Output: 篫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31723;</p>  <!-- Display: 篫 -->

HTML Hexadecimal:

<p>HTML hex: &#x7BEB;</p>  <!-- Display: 篫 -->

URL Encoding:

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

Encodings

MD5:

1b23650b8a6b6da8af28958944404cce

SHA1:

aee85415528f37456704e80617f252e3e15bd388

Base64:

56+r