Unicode Finder

"祷" U+7977(CJK UNIFIED IDEOGRAPH-7977)

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

Programming

C
\u7977
JavaScript
\u7977
Java
\u7977
Json
\u7977
Python
\u7977
Perl
\x{7977}
PHP
\x{7977}
Ruby
\u{7977}
Rust
\u{7977}
Go
\u7977

Web

CSS
\007977
HtmlDecimal
祷
HtmlHexadecimal
祷
Url
%E7%A5%B7

Code

MD5
c1e3f9b1521bdb148c12c4e8cc156637
Sha1
b87becdf08017fc2d48dbb173d7c340ccd17417b
Base64
56W3

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7977';
console.log(char);  // Output: 祷

Java:

char c = '\u7977';
System.out.println(c);  // Output: 祷

JSON:

{"text": "\u7977"}  // Value: 祷

Python:

char = '\u7977'
print(char)  # Output: 祷

Perl:

my $char = "\x{7977}";
print $char;  # Output: 祷

PHP:

$char = "\x{7977}";
echo $char;  // Output: 祷

Ruby:

char = "\u{7977}"
puts char  # Output: 祷

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007977";  /* Display: 祷 */
}

HTML Decimal:

<p>HTML decimal: &#31095;</p>  <!-- Display: 祷 -->

HTML Hexadecimal:

<p>HTML hex: &#x7977;</p>  <!-- Display: 祷 -->

URL Encoding:

// 祷 URL encoding
https://unicodefinder.com/search.php?query=%E7%A5%B7

Encodings

MD5:

c1e3f9b1521bdb148c12c4e8cc156637

SHA1:

b87becdf08017fc2d48dbb173d7c340ccd17417b

Base64:

56W3