Unicode Finder

"灙" U+7059(CJK UNIFIED IDEOGRAPH-7059)

U+7059
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7059

Programming

C
\u7059
JavaScript
\u7059
Java
\u7059
Json
\u7059
Python
\u7059
Perl
\x{7059}
PHP
\x{7059}
Ruby
\u{7059}
Rust
\u{7059}
Go
\u7059

Web

CSS
\007059
HtmlDecimal
灙
HtmlHexadecimal
灙
Url
%E7%81%99

Code

MD5
d9006b287535815675c07a35746064a0
Sha1
29c062086b0b02a43d33762687efb84f7689f66a
Base64
54GZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7059';
console.log(char);  // Output: 灙

Java:

char c = '\u7059';
System.out.println(c);  // Output: 灙

JSON:

{"text": "\u7059"}  // Value: 灙

Python:

char = '\u7059'
print(char)  # Output: 灙

Perl:

my $char = "\x{7059}";
print $char;  # Output: 灙

PHP:

$char = "\x{7059}";
echo $char;  // Output: 灙

Ruby:

char = "\u{7059}"
puts char  # Output: 灙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007059";  /* Display: 灙 */
}

HTML Decimal:

<p>HTML decimal: &#28761;</p>  <!-- Display: 灙 -->

HTML Hexadecimal:

<p>HTML hex: &#x7059;</p>  <!-- Display: 灙 -->

URL Encoding:

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

Encodings

MD5:

d9006b287535815675c07a35746064a0

SHA1:

29c062086b0b02a43d33762687efb84f7689f66a

Base64:

54GZ