Unicode Finder

"維" U+7DAD(CJK UNIFIED IDEOGRAPH-7DAD)

U+7DAD
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7DAD

Programming

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

Web

CSS
\007DAD
HtmlDecimal
維
HtmlHexadecimal
維
Url
%E7%B6%AD

Code

MD5
e1db979ad421e8a97320799a4be09a80
Sha1
dc2d3849a89c835b17957afbbca4b9f9f38bf5ac
Base64
57at

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7DAD';
console.log(char);  // Output: 維

Java:

char c = '\u7DAD';
System.out.println(c);  // Output: 維

JSON:

{"text": "\u7DAD"}  // Value: 維

Python:

char = '\u7DAD'
print(char)  # Output: 維

Perl:

my $char = "\x{7DAD}";
print $char;  # Output: 維

PHP:

$char = "\x{7DAD}";
echo $char;  // Output: 維

Ruby:

char = "\u{7DAD}"
puts char  # Output: 維

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32173;</p>  <!-- Display: 維 -->

HTML Hexadecimal:

<p>HTML hex: &#x7DAD;</p>  <!-- Display: 維 -->

URL Encoding:

// 維 URL encoding
https://unicodefinder.com/search.php?query=%E7%B6%AD

Encodings

MD5:

e1db979ad421e8a97320799a4be09a80

SHA1:

dc2d3849a89c835b17957afbbca4b9f9f38bf5ac

Base64:

57at