Unicode Finder

"旵" U+65F5(CJK UNIFIED IDEOGRAPH-65F5)

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

Programming

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

Web

CSS
\0065F5
HtmlDecimal
旵
HtmlHexadecimal
旵
Url
%E6%97%B5

Code

MD5
09eb0d85c5c5eaea327f67e27a4c4409
Sha1
3f406d5cd3fcac656ec384c1512bafe3e37103a4
Base64
5pe1

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u65F5';
console.log(char);  // Output: 旵

Java:

char c = '\u65F5';
System.out.println(c);  // Output: 旵

JSON:

{"text": "\u65F5"}  // Value: 旵

Python:

char = '\u65F5'
print(char)  # Output: 旵

Perl:

my $char = "\x{65F5}";
print $char;  # Output: 旵

PHP:

$char = "\x{65F5}";
echo $char;  // Output: 旵

Ruby:

char = "\u{65F5}"
puts char  # Output: 旵

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26101;</p>  <!-- Display: 旵 -->

HTML Hexadecimal:

<p>HTML hex: &#x65F5;</p>  <!-- Display: 旵 -->

URL Encoding:

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

Encodings

MD5:

09eb0d85c5c5eaea327f67e27a4c4409

SHA1:

3f406d5cd3fcac656ec384c1512bafe3e37103a4

Base64:

5pe1