Unicode Finder

"铌" U+94CC(CJK UNIFIED IDEOGRAPH-94CC)

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

Programming

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

Web

CSS
\0094CC
HtmlDecimal
铌
HtmlHexadecimal
铌
Url
%E9%93%8C

Code

MD5
9d3e4594274721a66cf28e46163e9625
Sha1
5ae821e4b1b489681429164852fb8b9b12ae7e2c
Base64
6ZOM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u94CC';
console.log(char);  // Output: 铌

Java:

char c = '\u94CC';
System.out.println(c);  // Output: 铌

JSON:

{"text": "\u94CC"}  // Value: 铌

Python:

char = '\u94CC'
print(char)  # Output: 铌

Perl:

my $char = "\x{94CC}";
print $char;  # Output: 铌

PHP:

$char = "\x{94CC}";
echo $char;  // Output: 铌

Ruby:

char = "\u{94CC}"
puts char  # Output: 铌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38092;</p>  <!-- Display: 铌 -->

HTML Hexadecimal:

<p>HTML hex: &#x94CC;</p>  <!-- Display: 铌 -->

URL Encoding:

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

Encodings

MD5:

9d3e4594274721a66cf28e46163e9625

SHA1:

5ae821e4b1b489681429164852fb8b9b12ae7e2c

Base64:

6ZOM