Unicode Finder

"辗" U+8F97(CJK UNIFIED IDEOGRAPH-8F97)

U+8F97
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8F97

Programming

C
\u8F97
JavaScript
\u8F97
Java
\u8F97
Json
\u8F97
Python
\u8F97
Perl
\x{8F97}
PHP
\x{8F97}
Ruby
\u{8F97}
Rust
\u{8F97}
Go
\u8F97

Web

CSS
\008F97
HtmlDecimal
辗
HtmlHexadecimal
辗
Url
%E8%BE%97

Code

MD5
f45374ead123eee02416def100fe465d
Sha1
6f22c6ef1491e5e58bda7c3eecac9ae891e0ce60
Base64
6L6X

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8F97';
console.log(char);  // Output: 辗

Java:

char c = '\u8F97';
System.out.println(c);  // Output: 辗

JSON:

{"text": "\u8F97"}  // Value: 辗

Python:

char = '\u8F97'
print(char)  # Output: 辗

Perl:

my $char = "\x{8F97}";
print $char;  # Output: 辗

PHP:

$char = "\x{8F97}";
echo $char;  // Output: 辗

Ruby:

char = "\u{8F97}"
puts char  # Output: 辗

Rust:

let c = '\u{8F97}';
println!("{}", c);  // Output: 辗

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008F97";  /* Display: 辗 */
}

HTML Decimal:

<p>HTML decimal: &#36759;</p>  <!-- Display: 辗 -->

HTML Hexadecimal:

<p>HTML hex: &#x8F97;</p>  <!-- Display: 辗 -->

URL Encoding:

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

Encodings

MD5:

f45374ead123eee02416def100fe465d

SHA1:

6f22c6ef1491e5e58bda7c3eecac9ae891e0ce60

Base64:

6L6X