Unicode Finder

"猇" U+7307(CJK UNIFIED IDEOGRAPH-7307)

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

Programming

C
\u7307
JavaScript
\u7307
Java
\u7307
Json
\u7307
Python
\u7307
Perl
\x{7307}
PHP
\x{7307}
Ruby
\u{7307}
Rust
\u{7307}
Go
\u7307

Web

CSS
\007307
HtmlDecimal
猇
HtmlHexadecimal
猇
Url
%E7%8C%87

Code

MD5
f472ec885c429a71e8dcc168f98ad285
Sha1
8816ca73bf1e1d29db4cfab7a0acaf9012124032
Base64
54yH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7307';
console.log(char);  // Output: 猇

Java:

char c = '\u7307';
System.out.println(c);  // Output: 猇

JSON:

{"text": "\u7307"}  // Value: 猇

Python:

char = '\u7307'
print(char)  # Output: 猇

Perl:

my $char = "\x{7307}";
print $char;  # Output: 猇

PHP:

$char = "\x{7307}";
echo $char;  // Output: 猇

Ruby:

char = "\u{7307}"
puts char  # Output: 猇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007307";  /* Display: 猇 */
}

HTML Decimal:

<p>HTML decimal: &#29447;</p>  <!-- Display: 猇 -->

HTML Hexadecimal:

<p>HTML hex: &#x7307;</p>  <!-- Display: 猇 -->

URL Encoding:

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

Encodings

MD5:

f472ec885c429a71e8dcc168f98ad285

SHA1:

8816ca73bf1e1d29db4cfab7a0acaf9012124032

Base64:

54yH