Unicode Finder

"灥" U+7065(CJK UNIFIED IDEOGRAPH-7065)

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

Programming

C
\u7065
JavaScript
\u7065
Java
\u7065
Json
\u7065
Python
\u7065
Perl
\x{7065}
PHP
\x{7065}
Ruby
\u{7065}
Rust
\u{7065}
Go
\u7065

Web

CSS
\007065
HtmlDecimal
灥
HtmlHexadecimal
灥
Url
%E7%81%A5

Code

MD5
4121059b0cbba2424c15012cf3512cf4
Sha1
42b8417b5d0f58ed3f6c7792ba99350b798fcde7
Base64
54Gl

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7065';
console.log(char);  // Output: 灥

Java:

char c = '\u7065';
System.out.println(c);  // Output: 灥

JSON:

{"text": "\u7065"}  // Value: 灥

Python:

char = '\u7065'
print(char)  # Output: 灥

Perl:

my $char = "\x{7065}";
print $char;  # Output: 灥

PHP:

$char = "\x{7065}";
echo $char;  // Output: 灥

Ruby:

char = "\u{7065}"
puts char  # Output: 灥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007065";  /* Display: 灥 */
}

HTML Decimal:

<p>HTML decimal: &#28773;</p>  <!-- Display: 灥 -->

HTML Hexadecimal:

<p>HTML hex: &#x7065;</p>  <!-- Display: 灥 -->

URL Encoding:

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

Encodings

MD5:

4121059b0cbba2424c15012cf3512cf4

SHA1:

42b8417b5d0f58ed3f6c7792ba99350b798fcde7

Base64:

54Gl