Unicode Finder

"电" U+7535(CJK UNIFIED IDEOGRAPH-7535)

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

Programming

C
\u7535
JavaScript
\u7535
Java
\u7535
Json
\u7535
Python
\u7535
Perl
\x{7535}
PHP
\x{7535}
Ruby
\u{7535}
Rust
\u{7535}
Go
\u7535

Web

CSS
\007535
HtmlDecimal
电
HtmlHexadecimal
电
Url
%E7%94%B5

Code

MD5
974899ef025c6ae09894140c6cabfd0e
Sha1
9a0508dd1d3ea2506ef689f08dc5429bb6754e7d
Base64
55S1

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7535';
console.log(char);  // Output: 电

Java:

char c = '\u7535';
System.out.println(c);  // Output: 电

JSON:

{"text": "\u7535"}  // Value: 电

Python:

char = '\u7535'
print(char)  # Output: 电

Perl:

my $char = "\x{7535}";
print $char;  # Output: 电

PHP:

$char = "\x{7535}";
echo $char;  // Output: 电

Ruby:

char = "\u{7535}"
puts char  # Output: 电

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007535";  /* Display: 电 */
}

HTML Decimal:

<p>HTML decimal: &#30005;</p>  <!-- Display: 电 -->

HTML Hexadecimal:

<p>HTML hex: &#x7535;</p>  <!-- Display: 电 -->

URL Encoding:

// 电 URL encoding
https://unicodefinder.com/search.php?query=%E7%94%B5

Encodings

MD5:

974899ef025c6ae09894140c6cabfd0e

SHA1:

9a0508dd1d3ea2506ef689f08dc5429bb6754e7d

Base64:

55S1