Unicode Finder

"轀" U+8F40(CJK UNIFIED IDEOGRAPH-8F40)

U+8F40
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8F40

Programming

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

Web

CSS
\008F40
HtmlDecimal
轀
HtmlHexadecimal
轀
Url
%E8%BD%80

Code

MD5
492ed2f2ab032cf965ac94840160bc60
Sha1
36a86613c7920af2ae5803ed150c761de09084e2
Base64
6L2A

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8F40';
console.log(char);  // Output: 轀

Java:

char c = '\u8F40';
System.out.println(c);  // Output: 轀

JSON:

{"text": "\u8F40"}  // Value: 轀

Python:

char = '\u8F40'
print(char)  # Output: 轀

Perl:

my $char = "\x{8F40}";
print $char;  # Output: 轀

PHP:

$char = "\x{8F40}";
echo $char;  // Output: 轀

Ruby:

char = "\u{8F40}"
puts char  # Output: 轀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36672;</p>  <!-- Display: 轀 -->

HTML Hexadecimal:

<p>HTML hex: &#x8F40;</p>  <!-- Display: 轀 -->

URL Encoding:

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

Encodings

MD5:

492ed2f2ab032cf965ac94840160bc60

SHA1:

36a86613c7920af2ae5803ed150c761de09084e2

Base64:

6L2A