Unicode Finder

"辀" U+8F80(CJK UNIFIED IDEOGRAPH-8F80)

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

Programming

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

Web

CSS
\008F80
HtmlDecimal
辀
HtmlHexadecimal
辀
Url
%E8%BE%80

Code

MD5
4add844386012f665eaa3dbfe7b7102a
Sha1
15939e56fa149005f405fe428cb6c2608d490ef6
Base64
6L6A

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8F80';
console.log(char);  // Output: 辀

Java:

char c = '\u8F80';
System.out.println(c);  // Output: 辀

JSON:

{"text": "\u8F80"}  // Value: 辀

Python:

char = '\u8F80'
print(char)  # Output: 辀

Perl:

my $char = "\x{8F80}";
print $char;  # Output: 辀

PHP:

$char = "\x{8F80}";
echo $char;  // Output: 辀

Ruby:

char = "\u{8F80}"
puts char  # Output: 辀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36736;</p>  <!-- Display: 辀 -->

HTML Hexadecimal:

<p>HTML hex: &#x8F80;</p>  <!-- Display: 辀 -->

URL Encoding:

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

Encodings

MD5:

4add844386012f665eaa3dbfe7b7102a

SHA1:

15939e56fa149005f405fe428cb6c2608d490ef6

Base64:

6L6A