Unicode Finder

"猆" U+7306(CJK UNIFIED IDEOGRAPH-7306)

U+7306
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7306

Programming

C
\u7306
JavaScript
\u7306
Java
\u7306
Json
\u7306
Python
\u7306
Perl
\x{7306}
PHP
\x{7306}
Ruby
\u{7306}
Rust
\u{7306}
Go
\u7306

Web

CSS
\007306
HtmlDecimal
猆
HtmlHexadecimal
猆
Url
%E7%8C%86

Code

MD5
979bbb4f6ff9b35fa6a12721228a740b
Sha1
51a6038be4ef61c6c648af33908520a0ca3d7127
Base64
54yG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7306';
console.log(char);  // Output: 猆

Java:

char c = '\u7306';
System.out.println(c);  // Output: 猆

JSON:

{"text": "\u7306"}  // Value: 猆

Python:

char = '\u7306'
print(char)  # Output: 猆

Perl:

my $char = "\x{7306}";
print $char;  # Output: 猆

PHP:

$char = "\x{7306}";
echo $char;  // Output: 猆

Ruby:

char = "\u{7306}"
puts char  # Output: 猆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007306";  /* Display: 猆 */
}

HTML Decimal:

<p>HTML decimal: &#29446;</p>  <!-- Display: 猆 -->

HTML Hexadecimal:

<p>HTML hex: &#x7306;</p>  <!-- Display: 猆 -->

URL Encoding:

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

Encodings

MD5:

979bbb4f6ff9b35fa6a12721228a740b

SHA1:

51a6038be4ef61c6c648af33908520a0ca3d7127

Base64:

54yG