Unicode Finder

"铏" U+94CF(CJK UNIFIED IDEOGRAPH-94CF)

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

Programming

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

Web

CSS
\0094CF
HtmlDecimal
铏
HtmlHexadecimal
铏
Url
%E9%93%8F

Code

MD5
911b102c51fb9d6359a59bbededfbd96
Sha1
3272afcc20aa4d4eba0731ceb18e308463d9fba4
Base64
6ZOP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u94CF';
console.log(char);  // Output: 铏

Java:

char c = '\u94CF';
System.out.println(c);  // Output: 铏

JSON:

{"text": "\u94CF"}  // Value: 铏

Python:

char = '\u94CF'
print(char)  # Output: 铏

Perl:

my $char = "\x{94CF}";
print $char;  # Output: 铏

PHP:

$char = "\x{94CF}";
echo $char;  // Output: 铏

Ruby:

char = "\u{94CF}"
puts char  # Output: 铏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38095;</p>  <!-- Display: 铏 -->

HTML Hexadecimal:

<p>HTML hex: &#x94CF;</p>  <!-- Display: 铏 -->

URL Encoding:

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

Encodings

MD5:

911b102c51fb9d6359a59bbededfbd96

SHA1:

3272afcc20aa4d4eba0731ceb18e308463d9fba4

Base64:

6ZOP