Unicode Finder

"竉" U+7AC9(CJK UNIFIED IDEOGRAPH-7AC9)

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

Programming

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

Web

CSS
\007AC9
HtmlDecimal
竉
HtmlHexadecimal
竉
Url
%E7%AB%89

Code

MD5
ecf6f9b13352b27f445cc5f40521e892
Sha1
07421647a4adeba5e551bed98063383c408565c0
Base64
56uJ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7AC9';
console.log(char);  // Output: 竉

Java:

char c = '\u7AC9';
System.out.println(c);  // Output: 竉

JSON:

{"text": "\u7AC9"}  // Value: 竉

Python:

char = '\u7AC9'
print(char)  # Output: 竉

Perl:

my $char = "\x{7AC9}";
print $char;  # Output: 竉

PHP:

$char = "\x{7AC9}";
echo $char;  // Output: 竉

Ruby:

char = "\u{7AC9}"
puts char  # Output: 竉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31433;</p>  <!-- Display: 竉 -->

HTML Hexadecimal:

<p>HTML hex: &#x7AC9;</p>  <!-- Display: 竉 -->

URL Encoding:

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

Encodings

MD5:

ecf6f9b13352b27f445cc5f40521e892

SHA1:

07421647a4adeba5e551bed98063383c408565c0

Base64:

56uJ