Unicode Finder

"猓" U+7313(CJK UNIFIED IDEOGRAPH-7313)

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

Programming

C
\u7313
JavaScript
\u7313
Java
\u7313
Json
\u7313
Python
\u7313
Perl
\x{7313}
PHP
\x{7313}
Ruby
\u{7313}
Rust
\u{7313}
Go
\u7313

Web

CSS
\007313
HtmlDecimal
猓
HtmlHexadecimal
猓
Url
%E7%8C%93

Code

MD5
4ee09964c38213eac83656e6cfbf12e1
Sha1
ed4b4d7cfe379b403fd21c128ccbcb4bf7041b09
Base64
54yT

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7313';
console.log(char);  // Output: 猓

Java:

char c = '\u7313';
System.out.println(c);  // Output: 猓

JSON:

{"text": "\u7313"}  // Value: 猓

Python:

char = '\u7313'
print(char)  # Output: 猓

Perl:

my $char = "\x{7313}";
print $char;  # Output: 猓

PHP:

$char = "\x{7313}";
echo $char;  // Output: 猓

Ruby:

char = "\u{7313}"
puts char  # Output: 猓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007313";  /* Display: 猓 */
}

HTML Decimal:

<p>HTML decimal: &#29459;</p>  <!-- Display: 猓 -->

HTML Hexadecimal:

<p>HTML hex: &#x7313;</p>  <!-- Display: 猓 -->

URL Encoding:

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

Encodings

MD5:

4ee09964c38213eac83656e6cfbf12e1

SHA1:

ed4b4d7cfe379b403fd21c128ccbcb4bf7041b09

Base64:

54yT