Unicode Finder

"鏕" U+93D5(CJK UNIFIED IDEOGRAPH-93D5)

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

Programming

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

Web

CSS
\0093D5
HtmlDecimal
鏕
HtmlHexadecimal
鏕
Url
%E9%8F%95

Code

MD5
50a7962da10551e43e987e4b5258047d
Sha1
aa4f6d3bfbd1d66544db7cf74ad7b796fe6543a0
Base64
6Y+V

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u93D5';
console.log(char);  // Output: 鏕

Java:

char c = '\u93D5';
System.out.println(c);  // Output: 鏕

JSON:

{"text": "\u93D5"}  // Value: 鏕

Python:

char = '\u93D5'
print(char)  # Output: 鏕

Perl:

my $char = "\x{93D5}";
print $char;  # Output: 鏕

PHP:

$char = "\x{93D5}";
echo $char;  // Output: 鏕

Ruby:

char = "\u{93D5}"
puts char  # Output: 鏕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37845;</p>  <!-- Display: 鏕 -->

HTML Hexadecimal:

<p>HTML hex: &#x93D5;</p>  <!-- Display: 鏕 -->

URL Encoding:

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

Encodings

MD5:

50a7962da10551e43e987e4b5258047d

SHA1:

aa4f6d3bfbd1d66544db7cf74ad7b796fe6543a0

Base64:

6Y+V