Unicode Finder

"竁" U+7AC1(CJK UNIFIED IDEOGRAPH-7AC1)

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

Programming

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

Web

CSS
\007AC1
HtmlDecimal
竁
HtmlHexadecimal
竁
Url
%E7%AB%81

Code

MD5
84746d60b310a7bb146e9696cfa5c50a
Sha1
18d350e73afec3b608a7187025a289262a365021
Base64
56uB

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7AC1';
console.log(char);  // Output: 竁

Java:

char c = '\u7AC1';
System.out.println(c);  // Output: 竁

JSON:

{"text": "\u7AC1"}  // Value: 竁

Python:

char = '\u7AC1'
print(char)  # Output: 竁

Perl:

my $char = "\x{7AC1}";
print $char;  # Output: 竁

PHP:

$char = "\x{7AC1}";
echo $char;  // Output: 竁

Ruby:

char = "\u{7AC1}"
puts char  # Output: 竁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31425;</p>  <!-- Display: 竁 -->

HTML Hexadecimal:

<p>HTML hex: &#x7AC1;</p>  <!-- Display: 竁 -->

URL Encoding:

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

Encodings

MD5:

84746d60b310a7bb146e9696cfa5c50a

SHA1:

18d350e73afec3b608a7187025a289262a365021

Base64:

56uB