Unicode Finder

"猈" U+7308(CJK UNIFIED IDEOGRAPH-7308)

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

Programming

C
\u7308
JavaScript
\u7308
Java
\u7308
Json
\u7308
Python
\u7308
Perl
\x{7308}
PHP
\x{7308}
Ruby
\u{7308}
Rust
\u{7308}
Go
\u7308

Web

CSS
\007308
HtmlDecimal
猈
HtmlHexadecimal
猈
Url
%E7%8C%88

Code

MD5
b3e02bd1b2d0eeacccd916f386dac53d
Sha1
ae7110b6fac149924e7419b901a0b2fe56fc0d96
Base64
54yI

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7308';
console.log(char);  // Output: 猈

Java:

char c = '\u7308';
System.out.println(c);  // Output: 猈

JSON:

{"text": "\u7308"}  // Value: 猈

Python:

char = '\u7308'
print(char)  # Output: 猈

Perl:

my $char = "\x{7308}";
print $char;  # Output: 猈

PHP:

$char = "\x{7308}";
echo $char;  // Output: 猈

Ruby:

char = "\u{7308}"
puts char  # Output: 猈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007308";  /* Display: 猈 */
}

HTML Decimal:

<p>HTML decimal: &#29448;</p>  <!-- Display: 猈 -->

HTML Hexadecimal:

<p>HTML hex: &#x7308;</p>  <!-- Display: 猈 -->

URL Encoding:

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

Encodings

MD5:

b3e02bd1b2d0eeacccd916f386dac53d

SHA1:

ae7110b6fac149924e7419b901a0b2fe56fc0d96

Base64:

54yI