Unicode Finder

"礶" U+7936(CJK UNIFIED IDEOGRAPH-7936)

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

Programming

C
\u7936
JavaScript
\u7936
Java
\u7936
Json
\u7936
Python
\u7936
Perl
\x{7936}
PHP
\x{7936}
Ruby
\u{7936}
Rust
\u{7936}
Go
\u7936

Web

CSS
\007936
HtmlDecimal
礶
HtmlHexadecimal
礶
Url
%E7%A4%B6

Code

MD5
ce3b37c187bf3488fb1ac52d8b71be78
Sha1
fc3f4b9d47b0e5f03c8af412c9be2fb6fd3945c2
Base64
56S2

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7936';
console.log(char);  // Output: 礶

Java:

char c = '\u7936';
System.out.println(c);  // Output: 礶

JSON:

{"text": "\u7936"}  // Value: 礶

Python:

char = '\u7936'
print(char)  # Output: 礶

Perl:

my $char = "\x{7936}";
print $char;  # Output: 礶

PHP:

$char = "\x{7936}";
echo $char;  // Output: 礶

Ruby:

char = "\u{7936}"
puts char  # Output: 礶

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007936";  /* Display: 礶 */
}

HTML Decimal:

<p>HTML decimal: &#31030;</p>  <!-- Display: 礶 -->

HTML Hexadecimal:

<p>HTML hex: &#x7936;</p>  <!-- Display: 礶 -->

URL Encoding:

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

Encodings

MD5:

ce3b37c187bf3488fb1ac52d8b71be78

SHA1:

fc3f4b9d47b0e5f03c8af412c9be2fb6fd3945c2

Base64:

56S2