Unicode Finder

"轥" U+8F65(CJK UNIFIED IDEOGRAPH-8F65)

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

Programming

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

Web

CSS
\008F65
HtmlDecimal
轥
HtmlHexadecimal
轥
Url
%E8%BD%A5

Code

MD5
28f7ff5e4164333314ac42e5b80fcc3c
Sha1
70c8e6a49c043d6a4e6cafa7262ab393d1a12c98
Base64
6L2l

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8F65';
console.log(char);  // Output: 轥

Java:

char c = '\u8F65';
System.out.println(c);  // Output: 轥

JSON:

{"text": "\u8F65"}  // Value: 轥

Python:

char = '\u8F65'
print(char)  # Output: 轥

Perl:

my $char = "\x{8F65}";
print $char;  # Output: 轥

PHP:

$char = "\x{8F65}";
echo $char;  // Output: 轥

Ruby:

char = "\u{8F65}"
puts char  # Output: 轥

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36709;</p>  <!-- Display: 轥 -->

HTML Hexadecimal:

<p>HTML hex: &#x8F65;</p>  <!-- Display: 轥 -->

URL Encoding:

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

Encodings

MD5:

28f7ff5e4164333314ac42e5b80fcc3c

SHA1:

70c8e6a49c043d6a4e6cafa7262ab393d1a12c98

Base64:

6L2l