Unicode Finder

"畆" U+7546(CJK UNIFIED IDEOGRAPH-7546)

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

Programming

C
\u7546
JavaScript
\u7546
Java
\u7546
Json
\u7546
Python
\u7546
Perl
\x{7546}
PHP
\x{7546}
Ruby
\u{7546}
Rust
\u{7546}
Go
\u7546

Web

CSS
\007546
HtmlDecimal
畆
HtmlHexadecimal
畆
Url
%E7%95%86

Code

MD5
d622872be05db776f57114ea322b280d
Sha1
cf1c85ed321f201d13d4db8c4524160a7d160650
Base64
55WG

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7546';
console.log(char);  // Output: 畆

Java:

char c = '\u7546';
System.out.println(c);  // Output: 畆

JSON:

{"text": "\u7546"}  // Value: 畆

Python:

char = '\u7546'
print(char)  # Output: 畆

Perl:

my $char = "\x{7546}";
print $char;  # Output: 畆

PHP:

$char = "\x{7546}";
echo $char;  // Output: 畆

Ruby:

char = "\u{7546}"
puts char  # Output: 畆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007546";  /* Display: 畆 */
}

HTML Decimal:

<p>HTML decimal: &#30022;</p>  <!-- Display: 畆 -->

HTML Hexadecimal:

<p>HTML hex: &#x7546;</p>  <!-- Display: 畆 -->

URL Encoding:

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

Encodings

MD5:

d622872be05db776f57114ea322b280d

SHA1:

cf1c85ed321f201d13d4db8c4524160a7d160650

Base64:

55WG