Unicode Finder

"纯" U+7EAF(CJK UNIFIED IDEOGRAPH-7EAF)

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

Programming

C
\u7EAF
JavaScript
\u7EAF
Java
\u7EAF
Json
\u7EAF
Python
\u7EAF
Perl
\x{7EAF}
PHP
\x{7EAF}
Ruby
\u{7EAF}
Rust
\u{7EAF}
Go
\u7EAF

Web

CSS
\007EAF
HtmlDecimal
纯
HtmlHexadecimal
纯
Url
%E7%BA%AF

Code

MD5
fa2fcecc3b5e03f0aacf1521c7a46ff7
Sha1
1a0784c31cd4c8d50d1eb5f3a59b88dc11be85e7
Base64
57qv

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7EAF';
console.log(char);  // Output: 纯

Java:

char c = '\u7EAF';
System.out.println(c);  // Output: 纯

JSON:

{"text": "\u7EAF"}  // Value: 纯

Python:

char = '\u7EAF'
print(char)  # Output: 纯

Perl:

my $char = "\x{7EAF}";
print $char;  # Output: 纯

PHP:

$char = "\x{7EAF}";
echo $char;  // Output: 纯

Ruby:

char = "\u{7EAF}"
puts char  # Output: 纯

Rust:

let c = '\u{7EAF}';
println!("{}", c);  // Output: 纯

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007EAF";  /* Display: 纯 */
}

HTML Decimal:

<p>HTML decimal: &#32431;</p>  <!-- Display: 纯 -->

HTML Hexadecimal:

<p>HTML hex: &#x7EAF;</p>  <!-- Display: 纯 -->

URL Encoding:

// 纯 URL encoding
https://unicodefinder.com/search.php?query=%E7%BA%AF

Encodings

MD5:

fa2fcecc3b5e03f0aacf1521c7a46ff7

SHA1:

1a0784c31cd4c8d50d1eb5f3a59b88dc11be85e7

Base64:

57qv