Unicode Finder

"灢" U+7062(CJK UNIFIED IDEOGRAPH-7062)

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

Programming

C
\u7062
JavaScript
\u7062
Java
\u7062
Json
\u7062
Python
\u7062
Perl
\x{7062}
PHP
\x{7062}
Ruby
\u{7062}
Rust
\u{7062}
Go
\u7062

Web

CSS
\007062
HtmlDecimal
灢
HtmlHexadecimal
灢
Url
%E7%81%A2

Code

MD5
741b18f256ba780efb3f6ef32b1196c0
Sha1
b471f376370eda2445e5fa41585491816a6e1d8c
Base64
54Gi

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7062';
console.log(char);  // Output: 灢

Java:

char c = '\u7062';
System.out.println(c);  // Output: 灢

JSON:

{"text": "\u7062"}  // Value: 灢

Python:

char = '\u7062'
print(char)  # Output: 灢

Perl:

my $char = "\x{7062}";
print $char;  # Output: 灢

PHP:

$char = "\x{7062}";
echo $char;  // Output: 灢

Ruby:

char = "\u{7062}"
puts char  # Output: 灢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007062";  /* Display: 灢 */
}

HTML Decimal:

<p>HTML decimal: &#28770;</p>  <!-- Display: 灢 -->

HTML Hexadecimal:

<p>HTML hex: &#x7062;</p>  <!-- Display: 灢 -->

URL Encoding:

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

Encodings

MD5:

741b18f256ba780efb3f6ef32b1196c0

SHA1:

b471f376370eda2445e5fa41585491816a6e1d8c

Base64:

54Gi