Unicode Finder

"被" U+88AB(CJK UNIFIED IDEOGRAPH-88AB)

U+88AB
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-88AB

Programming

C
\u88AB
JavaScript
\u88AB
Java
\u88AB
Json
\u88AB
Python
\u88AB
Perl
\x{88AB}
PHP
\x{88AB}
Ruby
\u{88AB}
Rust
\u{88AB}
Go
\u88AB

Web

CSS
\0088AB
HtmlDecimal
被
HtmlHexadecimal
被
Url
%E8%A2%AB

Code

MD5
22ae803c5254c1c2fd3770d43500b234
Sha1
db81ac091be171047e886623aac940a120e62155
Base64
6KKr

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u88AB';
console.log(char);  // Output: 被

Java:

char c = '\u88AB';
System.out.println(c);  // Output: 被

JSON:

{"text": "\u88AB"}  // Value: 被

Python:

char = '\u88AB'
print(char)  # Output: 被

Perl:

my $char = "\x{88AB}";
print $char;  # Output: 被

PHP:

$char = "\x{88AB}";
echo $char;  // Output: 被

Ruby:

char = "\u{88AB}"
puts char  # Output: 被

Rust:

let c = '\u{88AB}';
println!("{}", c);  // Output: 被

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0088AB";  /* Display: 被 */
}

HTML Decimal:

<p>HTML decimal: &#34987;</p>  <!-- Display: 被 -->

HTML Hexadecimal:

<p>HTML hex: &#x88AB;</p>  <!-- Display: 被 -->

URL Encoding:

// 被 URL encoding
https://unicodefinder.com/search.php?query=%E8%A2%AB

Encodings

MD5:

22ae803c5254c1c2fd3770d43500b234

SHA1:

db81ac091be171047e886623aac940a120e62155

Base64:

6KKr