Unicode Finder

"軞" U+8EDE(CJK UNIFIED IDEOGRAPH-8EDE)

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

Programming

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

Web

CSS
\008EDE
HtmlDecimal
軞
HtmlHexadecimal
軞
Url
%E8%BB%9E

Code

MD5
c6eeff1572b195bcf4283e84d1f9a0f6
Sha1
585cdffa0a072c020fc165b8ae0490bfd87f7937
Base64
6Lue

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8EDE';
console.log(char);  // Output: 軞

Java:

char c = '\u8EDE';
System.out.println(c);  // Output: 軞

JSON:

{"text": "\u8EDE"}  // Value: 軞

Python:

char = '\u8EDE'
print(char)  # Output: 軞

Perl:

my $char = "\x{8EDE}";
print $char;  # Output: 軞

PHP:

$char = "\x{8EDE}";
echo $char;  // Output: 軞

Ruby:

char = "\u{8EDE}"
puts char  # Output: 軞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36574;</p>  <!-- Display: 軞 -->

HTML Hexadecimal:

<p>HTML hex: &#x8EDE;</p>  <!-- Display: 軞 -->

URL Encoding:

// 軞 URL encoding
https://unicodefinder.com/search.php?query=%E8%BB%9E

Encodings

MD5:

c6eeff1572b195bcf4283e84d1f9a0f6

SHA1:

585cdffa0a072c020fc165b8ae0490bfd87f7937

Base64:

6Lue