Unicode Finder

"繠" U+7E60(CJK UNIFIED IDEOGRAPH-7E60)

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

Programming

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

Web

CSS
\007E60
HtmlDecimal
繠
HtmlHexadecimal
繠
Url
%E7%B9%A0

Code

MD5
624b7bb255385a52efbafa379e1dc6fa
Sha1
d0fa491dba01236b22572a3a53b3f5e7bfa7cc39
Base64
57mg

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7E60';
console.log(char);  // Output: 繠

Java:

char c = '\u7E60';
System.out.println(c);  // Output: 繠

JSON:

{"text": "\u7E60"}  // Value: 繠

Python:

char = '\u7E60'
print(char)  # Output: 繠

Perl:

my $char = "\x{7E60}";
print $char;  # Output: 繠

PHP:

$char = "\x{7E60}";
echo $char;  // Output: 繠

Ruby:

char = "\u{7E60}"
puts char  # Output: 繠

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32352;</p>  <!-- Display: 繠 -->

HTML Hexadecimal:

<p>HTML hex: &#x7E60;</p>  <!-- Display: 繠 -->

URL Encoding:

// 繠 URL encoding
https://unicodefinder.com/search.php?query=%E7%B9%A0

Encodings

MD5:

624b7bb255385a52efbafa379e1dc6fa

SHA1:

d0fa491dba01236b22572a3a53b3f5e7bfa7cc39

Base64:

57mg