Unicode Finder

"灤" U+7064(CJK UNIFIED IDEOGRAPH-7064)

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

Programming

C
\u7064
JavaScript
\u7064
Java
\u7064
Json
\u7064
Python
\u7064
Perl
\x{7064}
PHP
\x{7064}
Ruby
\u{7064}
Rust
\u{7064}
Go
\u7064

Web

CSS
\007064
HtmlDecimal
灤
HtmlHexadecimal
灤
Url
%E7%81%A4

Code

MD5
719726f2f3142d00a6316c8bc9702c04
Sha1
8605e230a07052b8982e89acea4040863c9ae0cf
Base64
54Gk

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7064';
console.log(char);  // Output: 灤

Java:

char c = '\u7064';
System.out.println(c);  // Output: 灤

JSON:

{"text": "\u7064"}  // Value: 灤

Python:

char = '\u7064'
print(char)  # Output: 灤

Perl:

my $char = "\x{7064}";
print $char;  # Output: 灤

PHP:

$char = "\x{7064}";
echo $char;  // Output: 灤

Ruby:

char = "\u{7064}"
puts char  # Output: 灤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007064";  /* Display: 灤 */
}

HTML Decimal:

<p>HTML decimal: &#28772;</p>  <!-- Display: 灤 -->

HTML Hexadecimal:

<p>HTML hex: &#x7064;</p>  <!-- Display: 灤 -->

URL Encoding:

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

Encodings

MD5:

719726f2f3142d00a6316c8bc9702c04

SHA1:

8605e230a07052b8982e89acea4040863c9ae0cf

Base64:

54Gk