Unicode Finder

"铊" U+94CA(CJK UNIFIED IDEOGRAPH-94CA)

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

Programming

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

Web

CSS
\0094CA
HtmlDecimal
铊
HtmlHexadecimal
铊
Url
%E9%93%8A

Code

MD5
6dc504c48ad35dcb92deba927bb2f6da
Sha1
c01f705a4ef9a857d4568566e4fde7636e3bad36
Base64
6ZOK

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u94CA';
console.log(char);  // Output: 铊

Java:

char c = '\u94CA';
System.out.println(c);  // Output: 铊

JSON:

{"text": "\u94CA"}  // Value: 铊

Python:

char = '\u94CA'
print(char)  # Output: 铊

Perl:

my $char = "\x{94CA}";
print $char;  # Output: 铊

PHP:

$char = "\x{94CA}";
echo $char;  // Output: 铊

Ruby:

char = "\u{94CA}"
puts char  # Output: 铊

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38090;</p>  <!-- Display: 铊 -->

HTML Hexadecimal:

<p>HTML hex: &#x94CA;</p>  <!-- Display: 铊 -->

URL Encoding:

// 铊 URL encoding
https://unicodefinder.com/search.php?query=%E9%93%8A

Encodings

MD5:

6dc504c48ad35dcb92deba927bb2f6da

SHA1:

c01f705a4ef9a857d4568566e4fde7636e3bad36

Base64:

6ZOK