Unicode Finder

"軂" U+8EC2(CJK UNIFIED IDEOGRAPH-8EC2)

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

Programming

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

Web

CSS
\008EC2
HtmlDecimal
軂
HtmlHexadecimal
軂
Url
%E8%BB%82

Code

MD5
66c5373578368ef9f657afb6504738e4
Sha1
48ec28ae15f2900c5c13c3a5d0df78075ee3bb81
Base64
6LuC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8EC2';
console.log(char);  // Output: 軂

Java:

char c = '\u8EC2';
System.out.println(c);  // Output: 軂

JSON:

{"text": "\u8EC2"}  // Value: 軂

Python:

char = '\u8EC2'
print(char)  # Output: 軂

Perl:

my $char = "\x{8EC2}";
print $char;  # Output: 軂

PHP:

$char = "\x{8EC2}";
echo $char;  // Output: 軂

Ruby:

char = "\u{8EC2}"
puts char  # Output: 軂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36546;</p>  <!-- Display: 軂 -->

HTML Hexadecimal:

<p>HTML hex: &#x8EC2;</p>  <!-- Display: 軂 -->

URL Encoding:

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

Encodings

MD5:

66c5373578368ef9f657afb6504738e4

SHA1:

48ec28ae15f2900c5c13c3a5d0df78075ee3bb81

Base64:

6LuC