Unicode Finder

"瞅" U+7785(CJK UNIFIED IDEOGRAPH-7785)

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

Programming

C
\u7785
JavaScript
\u7785
Java
\u7785
Json
\u7785
Python
\u7785
Perl
\x{7785}
PHP
\x{7785}
Ruby
\u{7785}
Rust
\u{7785}
Go
\u7785

Web

CSS
\007785
HtmlDecimal
瞅
HtmlHexadecimal
瞅
Url
%E7%9E%85

Code

MD5
da574ec0be1c5f6e62ec3e52728f816b
Sha1
5ced60d56b7b1927c0d3b711255dca381cb04001
Base64
556F

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7785';
console.log(char);  // Output: 瞅

Java:

char c = '\u7785';
System.out.println(c);  // Output: 瞅

JSON:

{"text": "\u7785"}  // Value: 瞅

Python:

char = '\u7785'
print(char)  # Output: 瞅

Perl:

my $char = "\x{7785}";
print $char;  # Output: 瞅

PHP:

$char = "\x{7785}";
echo $char;  // Output: 瞅

Ruby:

char = "\u{7785}"
puts char  # Output: 瞅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007785";  /* Display: 瞅 */
}

HTML Decimal:

<p>HTML decimal: &#30597;</p>  <!-- Display: 瞅 -->

HTML Hexadecimal:

<p>HTML hex: &#x7785;</p>  <!-- Display: 瞅 -->

URL Encoding:

// 瞅 URL encoding
https://unicodefinder.com/search.php?query=%E7%9E%85

Encodings

MD5:

da574ec0be1c5f6e62ec3e52728f816b

SHA1:

5ced60d56b7b1927c0d3b711255dca381cb04001

Base64:

556F