Unicode Finder

"鏲" U+93F2(CJK UNIFIED IDEOGRAPH-93F2)

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

Programming

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

Web

CSS
\0093F2
HtmlDecimal
鏲
HtmlHexadecimal
鏲
Url
%E9%8F%B2

Code

MD5
b3507a6d87e355512046c6f47809fd5c
Sha1
c960553e3a0dc82c515f8070b8e4aff1047fe399
Base64
6Y+y

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u93F2';
console.log(char);  // Output: 鏲

Java:

char c = '\u93F2';
System.out.println(c);  // Output: 鏲

JSON:

{"text": "\u93F2"}  // Value: 鏲

Python:

char = '\u93F2'
print(char)  # Output: 鏲

Perl:

my $char = "\x{93F2}";
print $char;  # Output: 鏲

PHP:

$char = "\x{93F2}";
echo $char;  // Output: 鏲

Ruby:

char = "\u{93F2}"
puts char  # Output: 鏲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37874;</p>  <!-- Display: 鏲 -->

HTML Hexadecimal:

<p>HTML hex: &#x93F2;</p>  <!-- Display: 鏲 -->

URL Encoding:

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

Encodings

MD5:

b3507a6d87e355512046c6f47809fd5c

SHA1:

c960553e3a0dc82c515f8070b8e4aff1047fe399

Base64:

6Y+y