Unicode Finder

"灇" U+7047(CJK UNIFIED IDEOGRAPH-7047)

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

Programming

C
\u7047
JavaScript
\u7047
Java
\u7047
Json
\u7047
Python
\u7047
Perl
\x{7047}
PHP
\x{7047}
Ruby
\u{7047}
Rust
\u{7047}
Go
\u7047

Web

CSS
\007047
HtmlDecimal
灇
HtmlHexadecimal
灇
Url
%E7%81%87

Code

MD5
74e09b00e7e494df10aa13e4d88d523e
Sha1
ef09c31f5dd74cd1406a334e12eee6e46579245f
Base64
54GH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7047';
console.log(char);  // Output: 灇

Java:

char c = '\u7047';
System.out.println(c);  // Output: 灇

JSON:

{"text": "\u7047"}  // Value: 灇

Python:

char = '\u7047'
print(char)  # Output: 灇

Perl:

my $char = "\x{7047}";
print $char;  # Output: 灇

PHP:

$char = "\x{7047}";
echo $char;  // Output: 灇

Ruby:

char = "\u{7047}"
puts char  # Output: 灇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007047";  /* Display: 灇 */
}

HTML Decimal:

<p>HTML decimal: &#28743;</p>  <!-- Display: 灇 -->

HTML Hexadecimal:

<p>HTML hex: &#x7047;</p>  <!-- Display: 灇 -->

URL Encoding:

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

Encodings

MD5:

74e09b00e7e494df10aa13e4d88d523e

SHA1:

ef09c31f5dd74cd1406a334e12eee6e46579245f

Base64:

54GH