Unicode Finder

"猅" U+7305(CJK UNIFIED IDEOGRAPH-7305)

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

Programming

C
\u7305
JavaScript
\u7305
Java
\u7305
Json
\u7305
Python
\u7305
Perl
\x{7305}
PHP
\x{7305}
Ruby
\u{7305}
Rust
\u{7305}
Go
\u7305

Web

CSS
\007305
HtmlDecimal
猅
HtmlHexadecimal
猅
Url
%E7%8C%85

Code

MD5
84782ed5b5037d1b0144b8c07b8da153
Sha1
c2ed6d3ca07f2006f6cc62fb6b45b940820ed3ce
Base64
54yF

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7305';
console.log(char);  // Output: 猅

Java:

char c = '\u7305';
System.out.println(c);  // Output: 猅

JSON:

{"text": "\u7305"}  // Value: 猅

Python:

char = '\u7305'
print(char)  # Output: 猅

Perl:

my $char = "\x{7305}";
print $char;  # Output: 猅

PHP:

$char = "\x{7305}";
echo $char;  // Output: 猅

Ruby:

char = "\u{7305}"
puts char  # Output: 猅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007305";  /* Display: 猅 */
}

HTML Decimal:

<p>HTML decimal: &#29445;</p>  <!-- Display: 猅 -->

HTML Hexadecimal:

<p>HTML hex: &#x7305;</p>  <!-- Display: 猅 -->

URL Encoding:

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

Encodings

MD5:

84782ed5b5037d1b0144b8c07b8da153

SHA1:

c2ed6d3ca07f2006f6cc62fb6b45b940820ed3ce

Base64:

54yF