Unicode Finder

"轲" U+8F72(CJK UNIFIED IDEOGRAPH-8F72)

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

Programming

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

Web

CSS
\008F72
HtmlDecimal
轲
HtmlHexadecimal
轲
Url
%E8%BD%B2

Code

MD5
48719af7c450e693ae35c6505ed9e128
Sha1
0af3f9f9c9c8e65172b919fdc542c163d6c7916c
Base64
6L2y

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8F72';
console.log(char);  // Output: 轲

Java:

char c = '\u8F72';
System.out.println(c);  // Output: 轲

JSON:

{"text": "\u8F72"}  // Value: 轲

Python:

char = '\u8F72'
print(char)  # Output: 轲

Perl:

my $char = "\x{8F72}";
print $char;  # Output: 轲

PHP:

$char = "\x{8F72}";
echo $char;  // Output: 轲

Ruby:

char = "\u{8F72}"
puts char  # Output: 轲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36722;</p>  <!-- Display: 轲 -->

HTML Hexadecimal:

<p>HTML hex: &#x8F72;</p>  <!-- Display: 轲 -->

URL Encoding:

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

Encodings

MD5:

48719af7c450e693ae35c6505ed9e128

SHA1:

0af3f9f9c9c8e65172b919fdc542c163d6c7916c

Base64:

6L2y