Unicode Finder

"灒" U+7052(CJK UNIFIED IDEOGRAPH-7052)

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

Programming

C
\u7052
JavaScript
\u7052
Java
\u7052
Json
\u7052
Python
\u7052
Perl
\x{7052}
PHP
\x{7052}
Ruby
\u{7052}
Rust
\u{7052}
Go
\u7052

Web

CSS
\007052
HtmlDecimal
灒
HtmlHexadecimal
灒
Url
%E7%81%92

Code

MD5
aceb0b3e6c21c2aad8ff01d9e1452655
Sha1
368946024f169792f39dfd8c8034ec93c3ca52d3
Base64
54GS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7052';
console.log(char);  // Output: 灒

Java:

char c = '\u7052';
System.out.println(c);  // Output: 灒

JSON:

{"text": "\u7052"}  // Value: 灒

Python:

char = '\u7052'
print(char)  # Output: 灒

Perl:

my $char = "\x{7052}";
print $char;  # Output: 灒

PHP:

$char = "\x{7052}";
echo $char;  // Output: 灒

Ruby:

char = "\u{7052}"
puts char  # Output: 灒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007052";  /* Display: 灒 */
}

HTML Decimal:

<p>HTML decimal: &#28754;</p>  <!-- Display: 灒 -->

HTML Hexadecimal:

<p>HTML hex: &#x7052;</p>  <!-- Display: 灒 -->

URL Encoding:

// 灒 URL encoding
https://unicodefinder.com/search.php?query=%E7%81%92

Encodings

MD5:

aceb0b3e6c21c2aad8ff01d9e1452655

SHA1:

368946024f169792f39dfd8c8034ec93c3ca52d3

Base64:

54GS