Unicode Finder

"竱" U+7AF1(CJK UNIFIED IDEOGRAPH-7AF1)

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

Programming

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

Web

CSS
\007AF1
HtmlDecimal
竱
HtmlHexadecimal
竱
Url
%E7%AB%B1

Code

MD5
cbd141628d5054d48e9660c2d44156d1
Sha1
0f5b5b38e27c7fdb7086b9a82ac3dd8139043f03
Base64
56ux

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7AF1';
console.log(char);  // Output: 竱

Java:

char c = '\u7AF1';
System.out.println(c);  // Output: 竱

JSON:

{"text": "\u7AF1"}  // Value: 竱

Python:

char = '\u7AF1'
print(char)  # Output: 竱

Perl:

my $char = "\x{7AF1}";
print $char;  # Output: 竱

PHP:

$char = "\x{7AF1}";
echo $char;  // Output: 竱

Ruby:

char = "\u{7AF1}"
puts char  # Output: 竱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31473;</p>  <!-- Display: 竱 -->

HTML Hexadecimal:

<p>HTML hex: &#x7AF1;</p>  <!-- Display: 竱 -->

URL Encoding:

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

Encodings

MD5:

cbd141628d5054d48e9660c2d44156d1

SHA1:

0f5b5b38e27c7fdb7086b9a82ac3dd8139043f03

Base64:

56ux