Unicode Finder

"灅" U+7045(CJK UNIFIED IDEOGRAPH-7045)

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

Programming

C
\u7045
JavaScript
\u7045
Java
\u7045
Json
\u7045
Python
\u7045
Perl
\x{7045}
PHP
\x{7045}
Ruby
\u{7045}
Rust
\u{7045}
Go
\u7045

Web

CSS
\007045
HtmlDecimal
灅
HtmlHexadecimal
灅
Url
%E7%81%85

Code

MD5
8d67b38393b6455c72806941148f67b5
Sha1
d770f60479a16feb546b6d596ef1c221cf1cf3cd
Base64
54GF

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7045';
console.log(char);  // Output: 灅

Java:

char c = '\u7045';
System.out.println(c);  // Output: 灅

JSON:

{"text": "\u7045"}  // Value: 灅

Python:

char = '\u7045'
print(char)  # Output: 灅

Perl:

my $char = "\x{7045}";
print $char;  # Output: 灅

PHP:

$char = "\x{7045}";
echo $char;  // Output: 灅

Ruby:

char = "\u{7045}"
puts char  # Output: 灅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007045";  /* Display: 灅 */
}

HTML Decimal:

<p>HTML decimal: &#28741;</p>  <!-- Display: 灅 -->

HTML Hexadecimal:

<p>HTML hex: &#x7045;</p>  <!-- Display: 灅 -->

URL Encoding:

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

Encodings

MD5:

8d67b38393b6455c72806941148f67b5

SHA1:

d770f60479a16feb546b6d596ef1c221cf1cf3cd

Base64:

54GF