Unicode Finder

"铦" U+94E6(CJK UNIFIED IDEOGRAPH-94E6)

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

Programming

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

Web

CSS
\0094E6
HtmlDecimal
铦
HtmlHexadecimal
铦
Url
%E9%93%A6

Code

MD5
e8d2c52a0d9505a5d052f4c74809ff16
Sha1
2817c711af3483c79bfb570113aff0ed49e9378c
Base64
6ZOm

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u94E6';
console.log(char);  // Output: 铦

Java:

char c = '\u94E6';
System.out.println(c);  // Output: 铦

JSON:

{"text": "\u94E6"}  // Value: 铦

Python:

char = '\u94E6'
print(char)  # Output: 铦

Perl:

my $char = "\x{94E6}";
print $char;  # Output: 铦

PHP:

$char = "\x{94E6}";
echo $char;  // Output: 铦

Ruby:

char = "\u{94E6}"
puts char  # Output: 铦

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38118;</p>  <!-- Display: 铦 -->

HTML Hexadecimal:

<p>HTML hex: &#x94E6;</p>  <!-- Display: 铦 -->

URL Encoding:

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

Encodings

MD5:

e8d2c52a0d9505a5d052f4c74809ff16

SHA1:

2817c711af3483c79bfb570113aff0ed49e9378c

Base64:

6ZOm