Unicode Finder

"缡" U+7F21(CJK UNIFIED IDEOGRAPH-7F21)

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

Programming

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

Web

CSS
\007F21
HtmlDecimal
缡
HtmlHexadecimal
缡
Url
%E7%BC%A1

Code

MD5
d2d0ae09c56e528f452355bcb9b245de
Sha1
565847548b4baf9d127312f479cc83ac49a26032
Base64
57yh

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7F21';
console.log(char);  // Output: 缡

Java:

char c = '\u7F21';
System.out.println(c);  // Output: 缡

JSON:

{"text": "\u7F21"}  // Value: 缡

Python:

char = '\u7F21'
print(char)  # Output: 缡

Perl:

my $char = "\x{7F21}";
print $char;  # Output: 缡

PHP:

$char = "\x{7F21}";
echo $char;  // Output: 缡

Ruby:

char = "\u{7F21}"
puts char  # Output: 缡

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32545;</p>  <!-- Display: 缡 -->

HTML Hexadecimal:

<p>HTML hex: &#x7F21;</p>  <!-- Display: 缡 -->

URL Encoding:

// 缡 URL encoding
https://unicodefinder.com/search.php?query=%E7%BC%A1

Encodings

MD5:

d2d0ae09c56e528f452355bcb9b245de

SHA1:

565847548b4baf9d127312f479cc83ac49a26032

Base64:

57yh