Unicode Finder

"辚" U+8F9A(CJK UNIFIED IDEOGRAPH-8F9A)

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

Programming

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

Web

CSS
\008F9A
HtmlDecimal
辚
HtmlHexadecimal
辚
Url
%E8%BE%9A

Code

MD5
caad84816b69a374d11f3c329f648d0e
Sha1
eed40bb4ebb7100fa979086133fff0a5c7aaf610
Base64
6L6a

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8F9A';
console.log(char);  // Output: 辚

Java:

char c = '\u8F9A';
System.out.println(c);  // Output: 辚

JSON:

{"text": "\u8F9A"}  // Value: 辚

Python:

char = '\u8F9A'
print(char)  # Output: 辚

Perl:

my $char = "\x{8F9A}";
print $char;  # Output: 辚

PHP:

$char = "\x{8F9A}";
echo $char;  // Output: 辚

Ruby:

char = "\u{8F9A}"
puts char  # Output: 辚

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36762;</p>  <!-- Display: 辚 -->

HTML Hexadecimal:

<p>HTML hex: &#x8F9A;</p>  <!-- Display: 辚 -->

URL Encoding:

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

Encodings

MD5:

caad84816b69a374d11f3c329f648d0e

SHA1:

eed40bb4ebb7100fa979086133fff0a5c7aaf610

Base64:

6L6a