Unicode Finder

"鋇" U+92C7(CJK UNIFIED IDEOGRAPH-92C7)

U+92C7
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-92C7

Programming

C
\u92C7
JavaScript
\u92C7
Java
\u92C7
Json
\u92C7
Python
\u92C7
Perl
\x{92C7}
PHP
\x{92C7}
Ruby
\u{92C7}
Rust
\u{92C7}
Go
\u92C7

Web

CSS
\0092C7
HtmlDecimal
鋇
HtmlHexadecimal
鋇
Url
%E9%8B%87

Code

MD5
c65bc6931691821465cc738bd0e199a5
Sha1
49716e7fda3fc34e19c2d986dda8605e80abc909
Base64
6YuH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u92C7';
console.log(char);  // Output: 鋇

Java:

char c = '\u92C7';
System.out.println(c);  // Output: 鋇

JSON:

{"text": "\u92C7"}  // Value: 鋇

Python:

char = '\u92C7'
print(char)  # Output: 鋇

Perl:

my $char = "\x{92C7}";
print $char;  # Output: 鋇

PHP:

$char = "\x{92C7}";
echo $char;  // Output: 鋇

Ruby:

char = "\u{92C7}"
puts char  # Output: 鋇

Rust:

let c = '\u{92C7}';
println!("{}", c);  // Output: 鋇

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0092C7";  /* Display: 鋇 */
}

HTML Decimal:

<p>HTML decimal: &#37575;</p>  <!-- Display: 鋇 -->

HTML Hexadecimal:

<p>HTML hex: &#x92C7;</p>  <!-- Display: 鋇 -->

URL Encoding:

// 鋇 URL encoding
https://unicodefinder.com/search.php?query=%E9%8B%87

Encodings

MD5:

c65bc6931691821465cc738bd0e199a5

SHA1:

49716e7fda3fc34e19c2d986dda8605e80abc909

Base64:

6YuH