Unicode Finder

"铥" U+94E5(CJK UNIFIED IDEOGRAPH-94E5)

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

Programming

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

Web

CSS
\0094E5
HtmlDecimal
铥
HtmlHexadecimal
铥
Url
%E9%93%A5

Code

MD5
bbe19737de67f22194594b5f87a21748
Sha1
73615f6422cd3445d15b874ba9bcbeb8aef3d2e1
Base64
6ZOl

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u94E5';
console.log(char);  // Output: 铥

Java:

char c = '\u94E5';
System.out.println(c);  // Output: 铥

JSON:

{"text": "\u94E5"}  // Value: 铥

Python:

char = '\u94E5'
print(char)  # Output: 铥

Perl:

my $char = "\x{94E5}";
print $char;  # Output: 铥

PHP:

$char = "\x{94E5}";
echo $char;  // Output: 铥

Ruby:

char = "\u{94E5}"
puts char  # Output: 铥

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38117;</p>  <!-- Display: 铥 -->

HTML Hexadecimal:

<p>HTML hex: &#x94E5;</p>  <!-- Display: 铥 -->

URL Encoding:

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

Encodings

MD5:

bbe19737de67f22194594b5f87a21748

SHA1:

73615f6422cd3445d15b874ba9bcbeb8aef3d2e1

Base64:

6ZOl