Unicode Finder

"鏙" U+93D9(CJK UNIFIED IDEOGRAPH-93D9)

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

Programming

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

Web

CSS
\0093D9
HtmlDecimal
鏙
HtmlHexadecimal
鏙
Url
%E9%8F%99

Code

MD5
c13b65e3205a028e7c30501fa77960db
Sha1
e9807db67f0c392faf81f8954b50287ce16cafff
Base64
6Y+Z

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u93D9';
console.log(char);  // Output: 鏙

Java:

char c = '\u93D9';
System.out.println(c);  // Output: 鏙

JSON:

{"text": "\u93D9"}  // Value: 鏙

Python:

char = '\u93D9'
print(char)  # Output: 鏙

Perl:

my $char = "\x{93D9}";
print $char;  # Output: 鏙

PHP:

$char = "\x{93D9}";
echo $char;  // Output: 鏙

Ruby:

char = "\u{93D9}"
puts char  # Output: 鏙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37849;</p>  <!-- Display: 鏙 -->

HTML Hexadecimal:

<p>HTML hex: &#x93D9;</p>  <!-- Display: 鏙 -->

URL Encoding:

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

Encodings

MD5:

c13b65e3205a028e7c30501fa77960db

SHA1:

e9807db67f0c392faf81f8954b50287ce16cafff

Base64:

6Y+Z