Unicode Finder

"祑" U+7951(CJK UNIFIED IDEOGRAPH-7951)

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

Programming

C
\u7951
JavaScript
\u7951
Java
\u7951
Json
\u7951
Python
\u7951
Perl
\x{7951}
PHP
\x{7951}
Ruby
\u{7951}
Rust
\u{7951}
Go
\u7951

Web

CSS
\007951
HtmlDecimal
祑
HtmlHexadecimal
祑
Url
%E7%A5%91

Code

MD5
1ae513c326c9de9e3fa14deacf5dc857
Sha1
b690804307ab5682493d3c5a327e20c8b7810526
Base64
56WR

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7951';
console.log(char);  // Output: 祑

Java:

char c = '\u7951';
System.out.println(c);  // Output: 祑

JSON:

{"text": "\u7951"}  // Value: 祑

Python:

char = '\u7951'
print(char)  # Output: 祑

Perl:

my $char = "\x{7951}";
print $char;  # Output: 祑

PHP:

$char = "\x{7951}";
echo $char;  // Output: 祑

Ruby:

char = "\u{7951}"
puts char  # Output: 祑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007951";  /* Display: 祑 */
}

HTML Decimal:

<p>HTML decimal: &#31057;</p>  <!-- Display: 祑 -->

HTML Hexadecimal:

<p>HTML hex: &#x7951;</p>  <!-- Display: 祑 -->

URL Encoding:

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

Encodings

MD5:

1ae513c326c9de9e3fa14deacf5dc857

SHA1:

b690804307ab5682493d3c5a327e20c8b7810526

Base64:

56WR