Unicode Finder

"鏊" U+93CA(CJK UNIFIED IDEOGRAPH-93CA)

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

Programming

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

Web

CSS
\0093CA
HtmlDecimal
鏊
HtmlHexadecimal
鏊
Url
%E9%8F%8A

Code

MD5
70b6f49d8b724bf5ac8ae86af1531d2e
Sha1
3b482158bee589c9d807df2c21d9d894b2e27023
Base64
6Y+K

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u93CA';
console.log(char);  // Output: 鏊

Java:

char c = '\u93CA';
System.out.println(c);  // Output: 鏊

JSON:

{"text": "\u93CA"}  // Value: 鏊

Python:

char = '\u93CA'
print(char)  # Output: 鏊

Perl:

my $char = "\x{93CA}";
print $char;  # Output: 鏊

PHP:

$char = "\x{93CA}";
echo $char;  // Output: 鏊

Ruby:

char = "\u{93CA}"
puts char  # Output: 鏊

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37834;</p>  <!-- Display: 鏊 -->

HTML Hexadecimal:

<p>HTML hex: &#x93CA;</p>  <!-- Display: 鏊 -->

URL Encoding:

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

Encodings

MD5:

70b6f49d8b724bf5ac8ae86af1531d2e

SHA1:

3b482158bee589c9d807df2c21d9d894b2e27023

Base64:

6Y+K