Unicode Finder

"猵" U+7335(CJK UNIFIED IDEOGRAPH-7335)

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

Programming

C
\u7335
JavaScript
\u7335
Java
\u7335
Json
\u7335
Python
\u7335
Perl
\x{7335}
PHP
\x{7335}
Ruby
\u{7335}
Rust
\u{7335}
Go
\u7335

Web

CSS
\007335
HtmlDecimal
猵
HtmlHexadecimal
猵
Url
%E7%8C%B5

Code

MD5
f67f0a290c2521fe548c70f36f88e125
Sha1
0ddf0a48bea010869ceb586fa897e296a879619a
Base64
54y1

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7335';
console.log(char);  // Output: 猵

Java:

char c = '\u7335';
System.out.println(c);  // Output: 猵

JSON:

{"text": "\u7335"}  // Value: 猵

Python:

char = '\u7335'
print(char)  # Output: 猵

Perl:

my $char = "\x{7335}";
print $char;  # Output: 猵

PHP:

$char = "\x{7335}";
echo $char;  // Output: 猵

Ruby:

char = "\u{7335}"
puts char  # Output: 猵

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007335";  /* Display: 猵 */
}

HTML Decimal:

<p>HTML decimal: &#29493;</p>  <!-- Display: 猵 -->

HTML Hexadecimal:

<p>HTML hex: &#x7335;</p>  <!-- Display: 猵 -->

URL Encoding:

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

Encodings

MD5:

f67f0a290c2521fe548c70f36f88e125

SHA1:

0ddf0a48bea010869ceb586fa897e296a879619a

Base64:

54y1