Unicode Finder

"繑" U+7E51(CJK UNIFIED IDEOGRAPH-7E51)

U+7E51
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7E51

Programming

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

Web

CSS
\007E51
HtmlDecimal
繑
HtmlHexadecimal
繑
Url
%E7%B9%91

Code

MD5
2c8deb75c9d6b1fa6d37203e4beab3f5
Sha1
25e6d652b6edb8b9b7ff46e9541d6c234cc00ac4
Base64
57mR

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7E51';
console.log(char);  // Output: 繑

Java:

char c = '\u7E51';
System.out.println(c);  // Output: 繑

JSON:

{"text": "\u7E51"}  // Value: 繑

Python:

char = '\u7E51'
print(char)  # Output: 繑

Perl:

my $char = "\x{7E51}";
print $char;  # Output: 繑

PHP:

$char = "\x{7E51}";
echo $char;  // Output: 繑

Ruby:

char = "\u{7E51}"
puts char  # Output: 繑

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32337;</p>  <!-- Display: 繑 -->

HTML Hexadecimal:

<p>HTML hex: &#x7E51;</p>  <!-- Display: 繑 -->

URL Encoding:

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

Encodings

MD5:

2c8deb75c9d6b1fa6d37203e4beab3f5

SHA1:

25e6d652b6edb8b9b7ff46e9541d6c234cc00ac4

Base64:

57mR