Unicode Finder

"灵" U+7075(CJK UNIFIED IDEOGRAPH-7075)

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

Programming

C
\u7075
JavaScript
\u7075
Java
\u7075
Json
\u7075
Python
\u7075
Perl
\x{7075}
PHP
\x{7075}
Ruby
\u{7075}
Rust
\u{7075}
Go
\u7075

Web

CSS
\007075
HtmlDecimal
灵
HtmlHexadecimal
灵
Url
%E7%81%B5

Code

MD5
6a9bc7df14f13c01f0a68f2682bd93af
Sha1
a14fda66e051a793627fe24f2eaea435fc7b183d
Base64
54G1

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7075';
console.log(char);  // Output: 灵

Java:

char c = '\u7075';
System.out.println(c);  // Output: 灵

JSON:

{"text": "\u7075"}  // Value: 灵

Python:

char = '\u7075'
print(char)  # Output: 灵

Perl:

my $char = "\x{7075}";
print $char;  # Output: 灵

PHP:

$char = "\x{7075}";
echo $char;  // Output: 灵

Ruby:

char = "\u{7075}"
puts char  # Output: 灵

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007075";  /* Display: 灵 */
}

HTML Decimal:

<p>HTML decimal: &#28789;</p>  <!-- Display: 灵 -->

HTML Hexadecimal:

<p>HTML hex: &#x7075;</p>  <!-- Display: 灵 -->

URL Encoding:

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

Encodings

MD5:

6a9bc7df14f13c01f0a68f2682bd93af

SHA1:

a14fda66e051a793627fe24f2eaea435fc7b183d

Base64:

54G1