Unicode Finder

"祲" U+7972(CJK UNIFIED IDEOGRAPH-7972)

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

Programming

C
\u7972
JavaScript
\u7972
Java
\u7972
Json
\u7972
Python
\u7972
Perl
\x{7972}
PHP
\x{7972}
Ruby
\u{7972}
Rust
\u{7972}
Go
\u7972

Web

CSS
\007972
HtmlDecimal
祲
HtmlHexadecimal
祲
Url
%E7%A5%B2

Code

MD5
301269ed3a71fdc67b4ca1a04666bdc7
Sha1
eb17a00d52fc9c54ed74bc0f5d69bbebb8c2818f
Base64
56Wy

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7972';
console.log(char);  // Output: 祲

Java:

char c = '\u7972';
System.out.println(c);  // Output: 祲

JSON:

{"text": "\u7972"}  // Value: 祲

Python:

char = '\u7972'
print(char)  # Output: 祲

Perl:

my $char = "\x{7972}";
print $char;  # Output: 祲

PHP:

$char = "\x{7972}";
echo $char;  // Output: 祲

Ruby:

char = "\u{7972}"
puts char  # Output: 祲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007972";  /* Display: 祲 */
}

HTML Decimal:

<p>HTML decimal: &#31090;</p>  <!-- Display: 祲 -->

HTML Hexadecimal:

<p>HTML hex: &#x7972;</p>  <!-- Display: 祲 -->

URL Encoding:

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

Encodings

MD5:

301269ed3a71fdc67b4ca1a04666bdc7

SHA1:

eb17a00d52fc9c54ed74bc0f5d69bbebb8c2818f

Base64:

56Wy