Unicode Finder

"礱" U+7931(CJK UNIFIED IDEOGRAPH-7931)

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

Programming

C
\u7931
JavaScript
\u7931
Java
\u7931
Json
\u7931
Python
\u7931
Perl
\x{7931}
PHP
\x{7931}
Ruby
\u{7931}
Rust
\u{7931}
Go
\u7931

Web

CSS
\007931
HtmlDecimal
礱
HtmlHexadecimal
礱
Url
%E7%A4%B1

Code

MD5
b08112caeef1f4cad3a3cc3a22716835
Sha1
2560d7ef195009021eb22968e8e68cae127bf210
Base64
56Sx

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7931';
console.log(char);  // Output: 礱

Java:

char c = '\u7931';
System.out.println(c);  // Output: 礱

JSON:

{"text": "\u7931"}  // Value: 礱

Python:

char = '\u7931'
print(char)  # Output: 礱

Perl:

my $char = "\x{7931}";
print $char;  # Output: 礱

PHP:

$char = "\x{7931}";
echo $char;  // Output: 礱

Ruby:

char = "\u{7931}"
puts char  # Output: 礱

Rust:

let c = '\u{7931}';
println!("{}", c);  // Output: 礱

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007931";  /* Display: 礱 */
}

HTML Decimal:

<p>HTML decimal: &#31025;</p>  <!-- Display: 礱 -->

HTML Hexadecimal:

<p>HTML hex: &#x7931;</p>  <!-- Display: 礱 -->

URL Encoding:

// 礱 URL encoding
https://unicodefinder.com/search.php?query=%E7%A4%B1

Encodings

MD5:

b08112caeef1f4cad3a3cc3a22716835

SHA1:

2560d7ef195009021eb22968e8e68cae127bf210

Base64:

56Sx