Unicode Finder

"軌" U+8ECC(CJK UNIFIED IDEOGRAPH-8ECC)

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

Programming

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

Web

CSS
\008ECC
HtmlDecimal
軌
HtmlHexadecimal
軌
Url
%E8%BB%8C

Code

MD5
fb5ae7f8c61c1488e650264c61bded11
Sha1
e4bf568382e7030e66f0c5a5218a5b90683ce8b6
Base64
6LuM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8ECC';
console.log(char);  // Output: 軌

Java:

char c = '\u8ECC';
System.out.println(c);  // Output: 軌

JSON:

{"text": "\u8ECC"}  // Value: 軌

Python:

char = '\u8ECC'
print(char)  # Output: 軌

Perl:

my $char = "\x{8ECC}";
print $char;  # Output: 軌

PHP:

$char = "\x{8ECC}";
echo $char;  // Output: 軌

Ruby:

char = "\u{8ECC}"
puts char  # Output: 軌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36556;</p>  <!-- Display: 軌 -->

HTML Hexadecimal:

<p>HTML hex: &#x8ECC;</p>  <!-- Display: 軌 -->

URL Encoding:

// 軌 URL encoding
https://unicodefinder.com/search.php?query=%E8%BB%8C

Encodings

MD5:

fb5ae7f8c61c1488e650264c61bded11

SHA1:

e4bf568382e7030e66f0c5a5218a5b90683ce8b6

Base64:

6LuM