Unicode Finder

"轚" U+8F5A(CJK UNIFIED IDEOGRAPH-8F5A)

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

Programming

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

Web

CSS
\008F5A
HtmlDecimal
轚
HtmlHexadecimal
轚
Url
%E8%BD%9A

Code

MD5
aedf41ac1e93682e11d1bb90096b3401
Sha1
3ef3470d035fb74957b363c9f8ac4a37701d744c
Base64
6L2a

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8F5A';
console.log(char);  // Output: 轚

Java:

char c = '\u8F5A';
System.out.println(c);  // Output: 轚

JSON:

{"text": "\u8F5A"}  // Value: 轚

Python:

char = '\u8F5A'
print(char)  # Output: 轚

Perl:

my $char = "\x{8F5A}";
print $char;  # Output: 轚

PHP:

$char = "\x{8F5A}";
echo $char;  // Output: 轚

Ruby:

char = "\u{8F5A}"
puts char  # Output: 轚

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36698;</p>  <!-- Display: 轚 -->

HTML Hexadecimal:

<p>HTML hex: &#x8F5A;</p>  <!-- Display: 轚 -->

URL Encoding:

// 轚 URL encoding
https://unicodefinder.com/search.php?query=%E8%BD%9A

Encodings

MD5:

aedf41ac1e93682e11d1bb90096b3401

SHA1:

3ef3470d035fb74957b363c9f8ac4a37701d744c

Base64:

6L2a