Unicode Finder

"猀" U+7300(CJK UNIFIED IDEOGRAPH-7300)

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

Programming

C
\u7300
JavaScript
\u7300
Java
\u7300
Json
\u7300
Python
\u7300
Perl
\x{7300}
PHP
\x{7300}
Ruby
\u{7300}
Rust
\u{7300}
Go
\u7300

Web

CSS
\007300
HtmlDecimal
猀
HtmlHexadecimal
猀
Url
%E7%8C%80

Code

MD5
b2357aee19c79b1311719293e2e07bae
Sha1
ee9cfa37f348b2cc9b611d02d4ec815af720bbea
Base64
54yA

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7300';
console.log(char);  // Output: 猀

Java:

char c = '\u7300';
System.out.println(c);  // Output: 猀

JSON:

{"text": "\u7300"}  // Value: 猀

Python:

char = '\u7300'
print(char)  # Output: 猀

Perl:

my $char = "\x{7300}";
print $char;  # Output: 猀

PHP:

$char = "\x{7300}";
echo $char;  // Output: 猀

Ruby:

char = "\u{7300}"
puts char  # Output: 猀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007300";  /* Display: 猀 */
}

HTML Decimal:

<p>HTML decimal: &#29440;</p>  <!-- Display: 猀 -->

HTML Hexadecimal:

<p>HTML hex: &#x7300;</p>  <!-- Display: 猀 -->

URL Encoding:

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

Encodings

MD5:

b2357aee19c79b1311719293e2e07bae

SHA1:

ee9cfa37f348b2cc9b611d02d4ec815af720bbea

Base64:

54yA