Unicode Finder

"獷" U+7377(CJK UNIFIED IDEOGRAPH-7377)

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

Programming

C
\u7377
JavaScript
\u7377
Java
\u7377
Json
\u7377
Python
\u7377
Perl
\x{7377}
PHP
\x{7377}
Ruby
\u{7377}
Rust
\u{7377}
Go
\u7377

Web

CSS
\007377
HtmlDecimal
獷
HtmlHexadecimal
獷
Url
%E7%8D%B7

Code

MD5
709bb735d23dd5639d3422b8119063e6
Sha1
475d9b25e8cacd3a0f3a3c2e3b6018c18d701667
Base64
5423

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7377';
console.log(char);  // Output: 獷

Java:

char c = '\u7377';
System.out.println(c);  // Output: 獷

JSON:

{"text": "\u7377"}  // Value: 獷

Python:

char = '\u7377'
print(char)  # Output: 獷

Perl:

my $char = "\x{7377}";
print $char;  # Output: 獷

PHP:

$char = "\x{7377}";
echo $char;  // Output: 獷

Ruby:

char = "\u{7377}"
puts char  # Output: 獷

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007377";  /* Display: 獷 */
}

HTML Decimal:

<p>HTML decimal: &#29559;</p>  <!-- Display: 獷 -->

HTML Hexadecimal:

<p>HTML hex: &#x7377;</p>  <!-- Display: 獷 -->

URL Encoding:

// 獷 URL encoding
https://unicodefinder.com/search.php?query=%E7%8D%B7

Encodings

MD5:

709bb735d23dd5639d3422b8119063e6

SHA1:

475d9b25e8cacd3a0f3a3c2e3b6018c18d701667

Base64:

5423