Unicode Finder

"旾" U+65FE(CJK UNIFIED IDEOGRAPH-65FE)

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

Programming

C
\u65FE
JavaScript
\u65FE
Java
\u65FE
Json
\u65FE
Python
\u65FE
Perl
\x{65FE}
PHP
\x{65FE}
Ruby
\u{65FE}
Rust
\u{65FE}
Go
\u65FE

Web

CSS
\0065FE
HtmlDecimal
旾
HtmlHexadecimal
旾
Url
%E6%97%BE

Code

MD5
1fc381934201f15fdcf336d4e4356180
Sha1
b716b2d464e4732a7a3a11f6bfe8fddb05a3e9f5
Base64
5pe+

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u65FE';
console.log(char);  // Output: 旾

Java:

char c = '\u65FE';
System.out.println(c);  // Output: 旾

JSON:

{"text": "\u65FE"}  // Value: 旾

Python:

char = '\u65FE'
print(char)  # Output: 旾

Perl:

my $char = "\x{65FE}";
print $char;  # Output: 旾

PHP:

$char = "\x{65FE}";
echo $char;  // Output: 旾

Ruby:

char = "\u{65FE}"
puts char  # Output: 旾

Rust:

let c = '\u{65FE}';
println!("{}", c);  // Output: 旾

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0065FE";  /* Display: 旾 */
}

HTML Decimal:

<p>HTML decimal: &#26110;</p>  <!-- Display: 旾 -->

HTML Hexadecimal:

<p>HTML hex: &#x65FE;</p>  <!-- Display: 旾 -->

URL Encoding:

// 旾 URL encoding
https://unicodefinder.com/search.php?query=%E6%97%BE

Encodings

MD5:

1fc381934201f15fdcf336d4e4356180

SHA1:

b716b2d464e4732a7a3a11f6bfe8fddb05a3e9f5

Base64:

5pe+