Unicode Finder

"竒" U+7AD2(CJK UNIFIED IDEOGRAPH-7AD2)

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

Programming

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

Web

CSS
\007AD2
HtmlDecimal
竒
HtmlHexadecimal
竒
Url
%E7%AB%92

Code

MD5
03f024bde237f4b823b77c8282222479
Sha1
5bfdbf8286f8b9cd1e146dbade9119249f72af5f
Base64
56uS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7AD2';
console.log(char);  // Output: 竒

Java:

char c = '\u7AD2';
System.out.println(c);  // Output: 竒

JSON:

{"text": "\u7AD2"}  // Value: 竒

Python:

char = '\u7AD2'
print(char)  # Output: 竒

Perl:

my $char = "\x{7AD2}";
print $char;  # Output: 竒

PHP:

$char = "\x{7AD2}";
echo $char;  // Output: 竒

Ruby:

char = "\u{7AD2}"
puts char  # Output: 竒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31442;</p>  <!-- Display: 竒 -->

HTML Hexadecimal:

<p>HTML hex: &#x7AD2;</p>  <!-- Display: 竒 -->

URL Encoding:

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

Encodings

MD5:

03f024bde237f4b823b77c8282222479

SHA1:

5bfdbf8286f8b9cd1e146dbade9119249f72af5f

Base64:

56uS