Unicode Finder

"铂" U+94C2(CJK UNIFIED IDEOGRAPH-94C2)

U+94C2
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-94C2

Programming

C
\u94C2
JavaScript
\u94C2
Java
\u94C2
Json
\u94C2
Python
\u94C2
Perl
\x{94C2}
PHP
\x{94C2}
Ruby
\u{94C2}
Rust
\u{94C2}
Go
\u94C2

Web

CSS
\0094C2
HtmlDecimal
铂
HtmlHexadecimal
铂
Url
%E9%93%82

Code

MD5
eae9e3287b42626f5218f98228ea7976
Sha1
11d0c22dd5b8c57d6229fadcb194ecfab74e44a9
Base64
6ZOC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u94C2';
console.log(char);  // Output: 铂

Java:

char c = '\u94C2';
System.out.println(c);  // Output: 铂

JSON:

{"text": "\u94C2"}  // Value: 铂

Python:

char = '\u94C2'
print(char)  # Output: 铂

Perl:

my $char = "\x{94C2}";
print $char;  # Output: 铂

PHP:

$char = "\x{94C2}";
echo $char;  // Output: 铂

Ruby:

char = "\u{94C2}"
puts char  # Output: 铂

Rust:

let c = '\u{94C2}';
println!("{}", c);  // Output: 铂

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0094C2";  /* Display: 铂 */
}

HTML Decimal:

<p>HTML decimal: &#38082;</p>  <!-- Display: 铂 -->

HTML Hexadecimal:

<p>HTML hex: &#x94C2;</p>  <!-- Display: 铂 -->

URL Encoding:

// 铂 URL encoding
https://unicodefinder.com/search.php?query=%E9%93%82

Encodings

MD5:

eae9e3287b42626f5218f98228ea7976

SHA1:

11d0c22dd5b8c57d6229fadcb194ecfab74e44a9

Base64:

6ZOC