Unicode Finder

"灰" U+7070(CJK UNIFIED IDEOGRAPH-7070)

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

Programming

C
\u7070
JavaScript
\u7070
Java
\u7070
Json
\u7070
Python
\u7070
Perl
\x{7070}
PHP
\x{7070}
Ruby
\u{7070}
Rust
\u{7070}
Go
\u7070

Web

CSS
\007070
HtmlDecimal
灰
HtmlHexadecimal
灰
Url
%E7%81%B0

Code

MD5
3e35a89155d201afba7566e4823a5fca
Sha1
c010838dd8fa38a8e898408da12617b5b2565e3b
Base64
54Gw

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7070';
console.log(char);  // Output: 灰

Java:

char c = '\u7070';
System.out.println(c);  // Output: 灰

JSON:

{"text": "\u7070"}  // Value: 灰

Python:

char = '\u7070'
print(char)  # Output: 灰

Perl:

my $char = "\x{7070}";
print $char;  # Output: 灰

PHP:

$char = "\x{7070}";
echo $char;  // Output: 灰

Ruby:

char = "\u{7070}"
puts char  # Output: 灰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007070";  /* Display: 灰 */
}

HTML Decimal:

<p>HTML decimal: &#28784;</p>  <!-- Display: 灰 -->

HTML Hexadecimal:

<p>HTML hex: &#x7070;</p>  <!-- Display: 灰 -->

URL Encoding:

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

Encodings

MD5:

3e35a89155d201afba7566e4823a5fca

SHA1:

c010838dd8fa38a8e898408da12617b5b2565e3b

Base64:

54Gw