Unicode Finder

"辂" U+8F82(CJK UNIFIED IDEOGRAPH-8F82)

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

Programming

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

Web

CSS
\008F82
HtmlDecimal
辂
HtmlHexadecimal
辂
Url
%E8%BE%82

Code

MD5
97ee85fcc6e9c239b2e274fd436eeb3d
Sha1
053d9e0cd0c81d656d869f08333a0720ef9af80d
Base64
6L6C

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8F82';
console.log(char);  // Output: 辂

Java:

char c = '\u8F82';
System.out.println(c);  // Output: 辂

JSON:

{"text": "\u8F82"}  // Value: 辂

Python:

char = '\u8F82'
print(char)  # Output: 辂

Perl:

my $char = "\x{8F82}";
print $char;  # Output: 辂

PHP:

$char = "\x{8F82}";
echo $char;  // Output: 辂

Ruby:

char = "\u{8F82}"
puts char  # Output: 辂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36738;</p>  <!-- Display: 辂 -->

HTML Hexadecimal:

<p>HTML hex: &#x8F82;</p>  <!-- Display: 辂 -->

URL Encoding:

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

Encodings

MD5:

97ee85fcc6e9c239b2e274fd436eeb3d

SHA1:

053d9e0cd0c81d656d869f08333a0720ef9af80d

Base64:

6L6C