Unicode Finder

"猄" U+7304(CJK UNIFIED IDEOGRAPH-7304)

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

Programming

C
\u7304
JavaScript
\u7304
Java
\u7304
Json
\u7304
Python
\u7304
Perl
\x{7304}
PHP
\x{7304}
Ruby
\u{7304}
Rust
\u{7304}
Go
\u7304

Web

CSS
\007304
HtmlDecimal
猄
HtmlHexadecimal
猄
Url
%E7%8C%84

Code

MD5
6a11203dfa250a46a69809cfc8dba6ac
Sha1
d05b3ad3e4792dee3c134fa5768de7a206fb5c98
Base64
54yE

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7304';
console.log(char);  // Output: 猄

Java:

char c = '\u7304';
System.out.println(c);  // Output: 猄

JSON:

{"text": "\u7304"}  // Value: 猄

Python:

char = '\u7304'
print(char)  # Output: 猄

Perl:

my $char = "\x{7304}";
print $char;  # Output: 猄

PHP:

$char = "\x{7304}";
echo $char;  // Output: 猄

Ruby:

char = "\u{7304}"
puts char  # Output: 猄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007304";  /* Display: 猄 */
}

HTML Decimal:

<p>HTML decimal: &#29444;</p>  <!-- Display: 猄 -->

HTML Hexadecimal:

<p>HTML hex: &#x7304;</p>  <!-- Display: 猄 -->

URL Encoding:

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

Encodings

MD5:

6a11203dfa250a46a69809cfc8dba6ac

SHA1:

d05b3ad3e4792dee3c134fa5768de7a206fb5c98

Base64:

54yE