Unicode Finder

"軓" U+8ED3(CJK UNIFIED IDEOGRAPH-8ED3)

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

Programming

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

Web

CSS
\008ED3
HtmlDecimal
軓
HtmlHexadecimal
軓
Url
%E8%BB%93

Code

MD5
be60143071ddcc38c987d5b7c1c62afb
Sha1
e7cf8221927a6308afe6e4640321c1e4ae5a6517
Base64
6LuT

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8ED3';
console.log(char);  // Output: 軓

Java:

char c = '\u8ED3';
System.out.println(c);  // Output: 軓

JSON:

{"text": "\u8ED3"}  // Value: 軓

Python:

char = '\u8ED3'
print(char)  # Output: 軓

Perl:

my $char = "\x{8ED3}";
print $char;  # Output: 軓

PHP:

$char = "\x{8ED3}";
echo $char;  // Output: 軓

Ruby:

char = "\u{8ED3}"
puts char  # Output: 軓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36563;</p>  <!-- Display: 軓 -->

HTML Hexadecimal:

<p>HTML hex: &#x8ED3;</p>  <!-- Display: 軓 -->

URL Encoding:

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

Encodings

MD5:

be60143071ddcc38c987d5b7c1c62afb

SHA1:

e7cf8221927a6308afe6e4640321c1e4ae5a6517

Base64:

6LuT