Unicode Finder

"礰" U+7930(CJK UNIFIED IDEOGRAPH-7930)

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

Programming

C
\u7930
JavaScript
\u7930
Java
\u7930
Json
\u7930
Python
\u7930
Perl
\x{7930}
PHP
\x{7930}
Ruby
\u{7930}
Rust
\u{7930}
Go
\u7930

Web

CSS
\007930
HtmlDecimal
礰
HtmlHexadecimal
礰
Url
%E7%A4%B0

Code

MD5
49275e0f269e93563e7e5a3ab9fb7e18
Sha1
e2c4cc8a33e2e9da26b3decaca2969ceb215149e
Base64
56Sw

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7930';
console.log(char);  // Output: 礰

Java:

char c = '\u7930';
System.out.println(c);  // Output: 礰

JSON:

{"text": "\u7930"}  // Value: 礰

Python:

char = '\u7930'
print(char)  # Output: 礰

Perl:

my $char = "\x{7930}";
print $char;  # Output: 礰

PHP:

$char = "\x{7930}";
echo $char;  // Output: 礰

Ruby:

char = "\u{7930}"
puts char  # Output: 礰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007930";  /* Display: 礰 */
}

HTML Decimal:

<p>HTML decimal: &#31024;</p>  <!-- Display: 礰 -->

HTML Hexadecimal:

<p>HTML hex: &#x7930;</p>  <!-- Display: 礰 -->

URL Encoding:

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

Encodings

MD5:

49275e0f269e93563e7e5a3ab9fb7e18

SHA1:

e2c4cc8a33e2e9da26b3decaca2969ceb215149e

Base64:

56Sw