Unicode Finder

"鏾" U+93FE(CJK UNIFIED IDEOGRAPH-93FE)

U+93FE
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-93FE

Programming

C
\u93FE
JavaScript
\u93FE
Java
\u93FE
Json
\u93FE
Python
\u93FE
Perl
\x{93FE}
PHP
\x{93FE}
Ruby
\u{93FE}
Rust
\u{93FE}
Go
\u93FE

Web

CSS
\0093FE
HtmlDecimal
鏾
HtmlHexadecimal
鏾
Url
%E9%8F%BE

Code

MD5
1130949764d6256fa74a31d714601ef0
Sha1
9a6d27eed2e2fdfc2c5e19107e60ada37e05a6c2
Base64
6Y++

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u93FE';
console.log(char);  // Output: 鏾

Java:

char c = '\u93FE';
System.out.println(c);  // Output: 鏾

JSON:

{"text": "\u93FE"}  // Value: 鏾

Python:

char = '\u93FE'
print(char)  # Output: 鏾

Perl:

my $char = "\x{93FE}";
print $char;  # Output: 鏾

PHP:

$char = "\x{93FE}";
echo $char;  // Output: 鏾

Ruby:

char = "\u{93FE}"
puts char  # Output: 鏾

Rust:

let c = '\u{93FE}';
println!("{}", c);  // Output: 鏾

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0093FE";  /* Display: 鏾 */
}

HTML Decimal:

<p>HTML decimal: &#37886;</p>  <!-- Display: 鏾 -->

HTML Hexadecimal:

<p>HTML hex: &#x93FE;</p>  <!-- Display: 鏾 -->

URL Encoding:

// 鏾 URL encoding
https://unicodefinder.com/search.php?query=%E9%8F%BE

Encodings

MD5:

1130949764d6256fa74a31d714601ef0

SHA1:

9a6d27eed2e2fdfc2c5e19107e60ada37e05a6c2

Base64:

6Y++