Unicode Finder

"鏔" U+93D4(CJK UNIFIED IDEOGRAPH-93D4)

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

Programming

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

Web

CSS
\0093D4
HtmlDecimal
鏔
HtmlHexadecimal
鏔
Url
%E9%8F%94

Code

MD5
a43ba26117ed14143d7d66e662b7f164
Sha1
5f912d3969e60464f40d0ad7e9505bc146975183
Base64
6Y+U

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u93D4';
console.log(char);  // Output: 鏔

Java:

char c = '\u93D4';
System.out.println(c);  // Output: 鏔

JSON:

{"text": "\u93D4"}  // Value: 鏔

Python:

char = '\u93D4'
print(char)  # Output: 鏔

Perl:

my $char = "\x{93D4}";
print $char;  # Output: 鏔

PHP:

$char = "\x{93D4}";
echo $char;  // Output: 鏔

Ruby:

char = "\u{93D4}"
puts char  # Output: 鏔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37844;</p>  <!-- Display: 鏔 -->

HTML Hexadecimal:

<p>HTML hex: &#x93D4;</p>  <!-- Display: 鏔 -->

URL Encoding:

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

Encodings

MD5:

a43ba26117ed14143d7d66e662b7f164

SHA1:

5f912d3969e60464f40d0ad7e9505bc146975183

Base64:

6Y+U