Unicode Finder

"輪" U+8F2A(CJK UNIFIED IDEOGRAPH-8F2A)

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

Programming

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

Web

CSS
\008F2A
HtmlDecimal
輪
HtmlHexadecimal
輪
Url
%E8%BC%AA

Code

MD5
f796841ee4bae6e82d14e1d5158598ed
Sha1
52c1c7d8ee3c3168403d0dccae39d8365f05a3c1
Base64
6Lyq

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8F2A';
console.log(char);  // Output: 輪

Java:

char c = '\u8F2A';
System.out.println(c);  // Output: 輪

JSON:

{"text": "\u8F2A"}  // Value: 輪

Python:

char = '\u8F2A'
print(char)  # Output: 輪

Perl:

my $char = "\x{8F2A}";
print $char;  # Output: 輪

PHP:

$char = "\x{8F2A}";
echo $char;  // Output: 輪

Ruby:

char = "\u{8F2A}"
puts char  # Output: 輪

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36650;</p>  <!-- Display: 輪 -->

HTML Hexadecimal:

<p>HTML hex: &#x8F2A;</p>  <!-- Display: 輪 -->

URL Encoding:

// 輪 URL encoding
https://unicodefinder.com/search.php?query=%E8%BC%AA

Encodings

MD5:

f796841ee4bae6e82d14e1d5158598ed

SHA1:

52c1c7d8ee3c3168403d0dccae39d8365f05a3c1

Base64:

6Lyq