Unicode Finder

"猩" U+7329(CJK UNIFIED IDEOGRAPH-7329)

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

Programming

C
\u7329
JavaScript
\u7329
Java
\u7329
Json
\u7329
Python
\u7329
Perl
\x{7329}
PHP
\x{7329}
Ruby
\u{7329}
Rust
\u{7329}
Go
\u7329

Web

CSS
\007329
HtmlDecimal
猩
HtmlHexadecimal
猩
Url
%E7%8C%A9

Code

MD5
96dc7c7e3704f54e67e872a20c0cfa74
Sha1
fab7bd722ac09f6b999159aca6ca84e1cd24aba8
Base64
54yp

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7329';
console.log(char);  // Output: 猩

Java:

char c = '\u7329';
System.out.println(c);  // Output: 猩

JSON:

{"text": "\u7329"}  // Value: 猩

Python:

char = '\u7329'
print(char)  # Output: 猩

Perl:

my $char = "\x{7329}";
print $char;  # Output: 猩

PHP:

$char = "\x{7329}";
echo $char;  // Output: 猩

Ruby:

char = "\u{7329}"
puts char  # Output: 猩

Rust:

let c = '\u{7329}';
println!("{}", c);  // Output: 猩

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007329";  /* Display: 猩 */
}

HTML Decimal:

<p>HTML decimal: &#29481;</p>  <!-- Display: 猩 -->

HTML Hexadecimal:

<p>HTML hex: &#x7329;</p>  <!-- Display: 猩 -->

URL Encoding:

// 猩 URL encoding
https://unicodefinder.com/search.php?query=%E7%8C%A9

Encodings

MD5:

96dc7c7e3704f54e67e872a20c0cfa74

SHA1:

fab7bd722ac09f6b999159aca6ca84e1cd24aba8

Base64:

54yp