Unicode Finder

"猉" U+7309(CJK UNIFIED IDEOGRAPH-7309)

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

Programming

C
\u7309
JavaScript
\u7309
Java
\u7309
Json
\u7309
Python
\u7309
Perl
\x{7309}
PHP
\x{7309}
Ruby
\u{7309}
Rust
\u{7309}
Go
\u7309

Web

CSS
\007309
HtmlDecimal
猉
HtmlHexadecimal
猉
Url
%E7%8C%89

Code

MD5
f19dda8501306dcc6af1c5c7e0e69692
Sha1
8429aebb032528d4f3207d5d407e6415ab48d601
Base64
54yJ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7309';
console.log(char);  // Output: 猉

Java:

char c = '\u7309';
System.out.println(c);  // Output: 猉

JSON:

{"text": "\u7309"}  // Value: 猉

Python:

char = '\u7309'
print(char)  # Output: 猉

Perl:

my $char = "\x{7309}";
print $char;  # Output: 猉

PHP:

$char = "\x{7309}";
echo $char;  // Output: 猉

Ruby:

char = "\u{7309}"
puts char  # Output: 猉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007309";  /* Display: 猉 */
}

HTML Decimal:

<p>HTML decimal: &#29449;</p>  <!-- Display: 猉 -->

HTML Hexadecimal:

<p>HTML hex: &#x7309;</p>  <!-- Display: 猉 -->

URL Encoding:

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

Encodings

MD5:

f19dda8501306dcc6af1c5c7e0e69692

SHA1:

8429aebb032528d4f3207d5d407e6415ab48d601

Base64:

54yJ