Unicode Finder

"竐" U+7AD0(CJK UNIFIED IDEOGRAPH-7AD0)

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

Programming

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

Web

CSS
\007AD0
HtmlDecimal
竐
HtmlHexadecimal
竐
Url
%E7%AB%90

Code

MD5
7399437e9e1deea1a121a9109befdeb6
Sha1
3d2e5b2b43c4cc8c287f76ae7f3a0ff2539cc291
Base64
56uQ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7AD0';
console.log(char);  // Output: 竐

Java:

char c = '\u7AD0';
System.out.println(c);  // Output: 竐

JSON:

{"text": "\u7AD0"}  // Value: 竐

Python:

char = '\u7AD0'
print(char)  # Output: 竐

Perl:

my $char = "\x{7AD0}";
print $char;  # Output: 竐

PHP:

$char = "\x{7AD0}";
echo $char;  // Output: 竐

Ruby:

char = "\u{7AD0}"
puts char  # Output: 竐

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31440;</p>  <!-- Display: 竐 -->

HTML Hexadecimal:

<p>HTML hex: &#x7AD0;</p>  <!-- Display: 竐 -->

URL Encoding:

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

Encodings

MD5:

7399437e9e1deea1a121a9109befdeb6

SHA1:

3d2e5b2b43c4cc8c287f76ae7f3a0ff2539cc291

Base64:

56uQ