Unicode Finder

"軒" U+8ED2(CJK UNIFIED IDEOGRAPH-8ED2)

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

Programming

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

Web

CSS
\008ED2
HtmlDecimal
軒
HtmlHexadecimal
軒
Url
%E8%BB%92

Code

MD5
b565f4484b4cee0ee28f802c96eb6a7f
Sha1
50b775f64eff1fd373c4691a5efb88e8fe43b26e
Base64
6LuS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8ED2';
console.log(char);  // Output: 軒

Java:

char c = '\u8ED2';
System.out.println(c);  // Output: 軒

JSON:

{"text": "\u8ED2"}  // Value: 軒

Python:

char = '\u8ED2'
print(char)  # Output: 軒

Perl:

my $char = "\x{8ED2}";
print $char;  # Output: 軒

PHP:

$char = "\x{8ED2}";
echo $char;  // Output: 軒

Ruby:

char = "\u{8ED2}"
puts char  # Output: 軒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36562;</p>  <!-- Display: 軒 -->

HTML Hexadecimal:

<p>HTML hex: &#x8ED2;</p>  <!-- Display: 軒 -->

URL Encoding:

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

Encodings

MD5:

b565f4484b4cee0ee28f802c96eb6a7f

SHA1:

50b775f64eff1fd373c4691a5efb88e8fe43b26e

Base64:

6LuS