Unicode Finder

"灄" U+7044(CJK UNIFIED IDEOGRAPH-7044)

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

Programming

C
\u7044
JavaScript
\u7044
Java
\u7044
Json
\u7044
Python
\u7044
Perl
\x{7044}
PHP
\x{7044}
Ruby
\u{7044}
Rust
\u{7044}
Go
\u7044

Web

CSS
\007044
HtmlDecimal
灄
HtmlHexadecimal
灄
Url
%E7%81%84

Code

MD5
7406816daaac1b4226d1074522ca7991
Sha1
3b8ebf18c5f70d52be89a233494b5e0ca91a3913
Base64
54GE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7044';
console.log(char);  // Output: 灄

Java:

char c = '\u7044';
System.out.println(c);  // Output: 灄

JSON:

{"text": "\u7044"}  // Value: 灄

Python:

char = '\u7044'
print(char)  # Output: 灄

Perl:

my $char = "\x{7044}";
print $char;  # Output: 灄

PHP:

$char = "\x{7044}";
echo $char;  // Output: 灄

Ruby:

char = "\u{7044}"
puts char  # Output: 灄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007044";  /* Display: 灄 */
}

HTML Decimal:

<p>HTML decimal: &#28740;</p>  <!-- Display: 灄 -->

HTML Hexadecimal:

<p>HTML hex: &#x7044;</p>  <!-- Display: 灄 -->

URL Encoding:

// 灄 URL encoding
https://unicodefinder.com/search.php?query=%E7%81%84

Encodings

MD5:

7406816daaac1b4226d1074522ca7991

SHA1:

3b8ebf18c5f70d52be89a233494b5e0ca91a3913

Base64:

54GE