Unicode Finder

"軮" U+8EEE(CJK UNIFIED IDEOGRAPH-8EEE)

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

Programming

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

Web

CSS
\008EEE
HtmlDecimal
軮
HtmlHexadecimal
軮
Url
%E8%BB%AE

Code

MD5
437c65c42e5edc182fbde6477a7bc62e
Sha1
6ba89beca05f4a757a90bf359e0217705d25e7d6
Base64
6Luu

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8EEE';
console.log(char);  // Output: 軮

Java:

char c = '\u8EEE';
System.out.println(c);  // Output: 軮

JSON:

{"text": "\u8EEE"}  // Value: 軮

Python:

char = '\u8EEE'
print(char)  # Output: 軮

Perl:

my $char = "\x{8EEE}";
print $char;  # Output: 軮

PHP:

$char = "\x{8EEE}";
echo $char;  // Output: 軮

Ruby:

char = "\u{8EEE}"
puts char  # Output: 軮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36590;</p>  <!-- Display: 軮 -->

HTML Hexadecimal:

<p>HTML hex: &#x8EEE;</p>  <!-- Display: 軮 -->

URL Encoding:

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

Encodings

MD5:

437c65c42e5edc182fbde6477a7bc62e

SHA1:

6ba89beca05f4a757a90bf359e0217705d25e7d6

Base64:

6Luu