Unicode Finder

"猃" U+7303(CJK UNIFIED IDEOGRAPH-7303)

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

Programming

C
\u7303
JavaScript
\u7303
Java
\u7303
Json
\u7303
Python
\u7303
Perl
\x{7303}
PHP
\x{7303}
Ruby
\u{7303}
Rust
\u{7303}
Go
\u7303

Web

CSS
\007303
HtmlDecimal
猃
HtmlHexadecimal
猃
Url
%E7%8C%83

Code

MD5
af629c836dccd3502f9cb4b5ab91afa5
Sha1
d81b86e8b83199171e50e8d8db0859d156a366dc
Base64
54yD

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7303';
console.log(char);  // Output: 猃

Java:

char c = '\u7303';
System.out.println(c);  // Output: 猃

JSON:

{"text": "\u7303"}  // Value: 猃

Python:

char = '\u7303'
print(char)  # Output: 猃

Perl:

my $char = "\x{7303}";
print $char;  # Output: 猃

PHP:

$char = "\x{7303}";
echo $char;  // Output: 猃

Ruby:

char = "\u{7303}"
puts char  # Output: 猃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007303";  /* Display: 猃 */
}

HTML Decimal:

<p>HTML decimal: &#29443;</p>  <!-- Display: 猃 -->

HTML Hexadecimal:

<p>HTML hex: &#x7303;</p>  <!-- Display: 猃 -->

URL Encoding:

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

Encodings

MD5:

af629c836dccd3502f9cb4b5ab91afa5

SHA1:

d81b86e8b83199171e50e8d8db0859d156a366dc

Base64:

54yD