Unicode Finder

"灀" U+7040(CJK UNIFIED IDEOGRAPH-7040)

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

Programming

C
\u7040
JavaScript
\u7040
Java
\u7040
Json
\u7040
Python
\u7040
Perl
\x{7040}
PHP
\x{7040}
Ruby
\u{7040}
Rust
\u{7040}
Go
\u7040

Web

CSS
\007040
HtmlDecimal
灀
HtmlHexadecimal
灀
Url
%E7%81%80

Code

MD5
76285e7084cfb1e751975841aeba0cd3
Sha1
169ccf9ee89df809766053320fc73e16b8debe7b
Base64
54GA

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7040';
console.log(char);  // Output: 灀

Java:

char c = '\u7040';
System.out.println(c);  // Output: 灀

JSON:

{"text": "\u7040"}  // Value: 灀

Python:

char = '\u7040'
print(char)  # Output: 灀

Perl:

my $char = "\x{7040}";
print $char;  # Output: 灀

PHP:

$char = "\x{7040}";
echo $char;  // Output: 灀

Ruby:

char = "\u{7040}"
puts char  # Output: 灀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007040";  /* Display: 灀 */
}

HTML Decimal:

<p>HTML decimal: &#28736;</p>  <!-- Display: 灀 -->

HTML Hexadecimal:

<p>HTML hex: &#x7040;</p>  <!-- Display: 灀 -->

URL Encoding:

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

Encodings

MD5:

76285e7084cfb1e751975841aeba0cd3

SHA1:

169ccf9ee89df809766053320fc73e16b8debe7b

Base64:

54GA