Unicode Finder

"癱" U+7671(CJK UNIFIED IDEOGRAPH-7671)

U+7671
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7671

Programming

C
\u7671
JavaScript
\u7671
Java
\u7671
Json
\u7671
Python
\u7671
Perl
\x{7671}
PHP
\x{7671}
Ruby
\u{7671}
Rust
\u{7671}
Go
\u7671

Web

CSS
\007671
HtmlDecimal
癱
HtmlHexadecimal
癱
Url
%E7%99%B1

Code

MD5
241e0d1142ebe9757bd435e2b10b098c
Sha1
96e5230395575c15591b93a1416f1a3bb156e4d0
Base64
55mx

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7671';
console.log(char);  // Output: 癱

Java:

char c = '\u7671';
System.out.println(c);  // Output: 癱

JSON:

{"text": "\u7671"}  // Value: 癱

Python:

char = '\u7671'
print(char)  # Output: 癱

Perl:

my $char = "\x{7671}";
print $char;  # Output: 癱

PHP:

$char = "\x{7671}";
echo $char;  // Output: 癱

Ruby:

char = "\u{7671}"
puts char  # Output: 癱

Rust:

let c = '\u{7671}';
println!("{}", c);  // Output: 癱

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007671";  /* Display: 癱 */
}

HTML Decimal:

<p>HTML decimal: &#30321;</p>  <!-- Display: 癱 -->

HTML Hexadecimal:

<p>HTML hex: &#x7671;</p>  <!-- Display: 癱 -->

URL Encoding:

// 癱 URL encoding
https://unicodefinder.com/search.php?query=%E7%99%B1

Encodings

MD5:

241e0d1142ebe9757bd435e2b10b098c

SHA1:

96e5230395575c15591b93a1416f1a3bb156e4d0

Base64:

55mx