Unicode Finder

"罥" U+7F65(CJK UNIFIED IDEOGRAPH-7F65)

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

Programming

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

Web

CSS
\007F65
HtmlDecimal
罥
HtmlHexadecimal
罥
Url
%E7%BD%A5

Code

MD5
fdf78739f6b4693a4839925055c5de56
Sha1
239fdc70867bc07d858d2919e9660ca8e7d94ebf
Base64
572l

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7F65';
console.log(char);  // Output: 罥

Java:

char c = '\u7F65';
System.out.println(c);  // Output: 罥

JSON:

{"text": "\u7F65"}  // Value: 罥

Python:

char = '\u7F65'
print(char)  # Output: 罥

Perl:

my $char = "\x{7F65}";
print $char;  # Output: 罥

PHP:

$char = "\x{7F65}";
echo $char;  // Output: 罥

Ruby:

char = "\u{7F65}"
puts char  # Output: 罥

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32613;</p>  <!-- Display: 罥 -->

HTML Hexadecimal:

<p>HTML hex: &#x7F65;</p>  <!-- Display: 罥 -->

URL Encoding:

// 罥 URL encoding
https://unicodefinder.com/search.php?query=%E7%BD%A5

Encodings

MD5:

fdf78739f6b4693a4839925055c5de56

SHA1:

239fdc70867bc07d858d2919e9660ca8e7d94ebf

Base64:

572l