Unicode Finder

"竘" U+7AD8(CJK UNIFIED IDEOGRAPH-7AD8)

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

Programming

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

Web

CSS
\007AD8
HtmlDecimal
竘
HtmlHexadecimal
竘
Url
%E7%AB%98

Code

MD5
c1c6d6f6e681f91831715db8eda919f6
Sha1
ac514fc5dbed9e894697fb1c777daa0d768ee48b
Base64
56uY

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7AD8';
console.log(char);  // Output: 竘

Java:

char c = '\u7AD8';
System.out.println(c);  // Output: 竘

JSON:

{"text": "\u7AD8"}  // Value: 竘

Python:

char = '\u7AD8'
print(char)  # Output: 竘

Perl:

my $char = "\x{7AD8}";
print $char;  # Output: 竘

PHP:

$char = "\x{7AD8}";
echo $char;  // Output: 竘

Ruby:

char = "\u{7AD8}"
puts char  # Output: 竘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31448;</p>  <!-- Display: 竘 -->

HTML Hexadecimal:

<p>HTML hex: &#x7AD8;</p>  <!-- Display: 竘 -->

URL Encoding:

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

Encodings

MD5:

c1c6d6f6e681f91831715db8eda919f6

SHA1:

ac514fc5dbed9e894697fb1c777daa0d768ee48b

Base64:

56uY