Unicode Finder

"礆" U+7906(CJK UNIFIED IDEOGRAPH-7906)

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

Programming

C
\u7906
JavaScript
\u7906
Java
\u7906
Json
\u7906
Python
\u7906
Perl
\x{7906}
PHP
\x{7906}
Ruby
\u{7906}
Rust
\u{7906}
Go
\u7906

Web

CSS
\007906
HtmlDecimal
礆
HtmlHexadecimal
礆
Url
%E7%A4%86

Code

MD5
3a1a8f87d120654912e5cbaf6fe94755
Sha1
e469e76d3bd78b4f9b1fe4b848728b8b1e675c2c
Base64
56SG

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7906';
console.log(char);  // Output: 礆

Java:

char c = '\u7906';
System.out.println(c);  // Output: 礆

JSON:

{"text": "\u7906"}  // Value: 礆

Python:

char = '\u7906'
print(char)  # Output: 礆

Perl:

my $char = "\x{7906}";
print $char;  # Output: 礆

PHP:

$char = "\x{7906}";
echo $char;  // Output: 礆

Ruby:

char = "\u{7906}"
puts char  # Output: 礆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007906";  /* Display: 礆 */
}

HTML Decimal:

<p>HTML decimal: &#30982;</p>  <!-- Display: 礆 -->

HTML Hexadecimal:

<p>HTML hex: &#x7906;</p>  <!-- Display: 礆 -->

URL Encoding:

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

Encodings

MD5:

3a1a8f87d120654912e5cbaf6fe94755

SHA1:

e469e76d3bd78b4f9b1fe4b848728b8b1e675c2c

Base64:

56SG