Unicode Finder

"鏩" U+93E9(CJK UNIFIED IDEOGRAPH-93E9)

U+93E9
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-93E9

Programming

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

Web

CSS
\0093E9
HtmlDecimal
鏩
HtmlHexadecimal
鏩
Url
%E9%8F%A9

Code

MD5
4a3b96c7ee95f847ad979ee3e52ae266
Sha1
2b1405d3e57278dee6cf8e4a1a3db97ffc192169
Base64
6Y+p

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u93E9';
console.log(char);  // Output: 鏩

Java:

char c = '\u93E9';
System.out.println(c);  // Output: 鏩

JSON:

{"text": "\u93E9"}  // Value: 鏩

Python:

char = '\u93E9'
print(char)  # Output: 鏩

Perl:

my $char = "\x{93E9}";
print $char;  # Output: 鏩

PHP:

$char = "\x{93E9}";
echo $char;  // Output: 鏩

Ruby:

char = "\u{93E9}"
puts char  # Output: 鏩

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37865;</p>  <!-- Display: 鏩 -->

HTML Hexadecimal:

<p>HTML hex: &#x93E9;</p>  <!-- Display: 鏩 -->

URL Encoding:

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

Encodings

MD5:

4a3b96c7ee95f847ad979ee3e52ae266

SHA1:

2b1405d3e57278dee6cf8e4a1a3db97ffc192169

Base64:

6Y+p