Unicode Finder

"竩" U+7AE9(CJK UNIFIED IDEOGRAPH-7AE9)

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

Programming

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

Web

CSS
\007AE9
HtmlDecimal
竩
HtmlHexadecimal
竩
Url
%E7%AB%A9

Code

MD5
3099daa20aeb41082789818348fb064c
Sha1
823879c57e929e3e061ec37e5df16d2d4d0ce998
Base64
56up

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7AE9';
console.log(char);  // Output: 竩

Java:

char c = '\u7AE9';
System.out.println(c);  // Output: 竩

JSON:

{"text": "\u7AE9"}  // Value: 竩

Python:

char = '\u7AE9'
print(char)  # Output: 竩

Perl:

my $char = "\x{7AE9}";
print $char;  # Output: 竩

PHP:

$char = "\x{7AE9}";
echo $char;  // Output: 竩

Ruby:

char = "\u{7AE9}"
puts char  # Output: 竩

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31465;</p>  <!-- Display: 竩 -->

HTML Hexadecimal:

<p>HTML hex: &#x7AE9;</p>  <!-- Display: 竩 -->

URL Encoding:

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

Encodings

MD5:

3099daa20aeb41082789818348fb064c

SHA1:

823879c57e929e3e061ec37e5df16d2d4d0ce998

Base64:

56up