Unicode Finder

"猴" U+7334(CJK UNIFIED IDEOGRAPH-7334)

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

Programming

C
\u7334
JavaScript
\u7334
Java
\u7334
Json
\u7334
Python
\u7334
Perl
\x{7334}
PHP
\x{7334}
Ruby
\u{7334}
Rust
\u{7334}
Go
\u7334

Web

CSS
\007334
HtmlDecimal
猴
HtmlHexadecimal
猴
Url
%E7%8C%B4

Code

MD5
89510ab4bde7abc73afc21e3185bed62
Sha1
a44686d0bd656fb452251fb2ddc9fc1d38460e0c
Base64
54y0

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7334';
console.log(char);  // Output: 猴

Java:

char c = '\u7334';
System.out.println(c);  // Output: 猴

JSON:

{"text": "\u7334"}  // Value: 猴

Python:

char = '\u7334'
print(char)  # Output: 猴

Perl:

my $char = "\x{7334}";
print $char;  # Output: 猴

PHP:

$char = "\x{7334}";
echo $char;  // Output: 猴

Ruby:

char = "\u{7334}"
puts char  # Output: 猴

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007334";  /* Display: 猴 */
}

HTML Decimal:

<p>HTML decimal: &#29492;</p>  <!-- Display: 猴 -->

HTML Hexadecimal:

<p>HTML hex: &#x7334;</p>  <!-- Display: 猴 -->

URL Encoding:

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

Encodings

MD5:

89510ab4bde7abc73afc21e3185bed62

SHA1:

a44686d0bd656fb452251fb2ddc9fc1d38460e0c

Base64:

54y0