Unicode Finder

"灜" U+705C(CJK UNIFIED IDEOGRAPH-705C)

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

Programming

C
\u705C
JavaScript
\u705C
Java
\u705C
Json
\u705C
Python
\u705C
Perl
\x{705C}
PHP
\x{705C}
Ruby
\u{705C}
Rust
\u{705C}
Go
\u705C

Web

CSS
\00705C
HtmlDecimal
灜
HtmlHexadecimal
灜
Url
%E7%81%9C

Code

MD5
c3086e07d9348089ef93e9acac710d4e
Sha1
8b9d522e136da5d268556c0593427066ac753634
Base64
54Gc

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u705C';
console.log(char);  // Output: 灜

Java:

char c = '\u705C';
System.out.println(c);  // Output: 灜

JSON:

{"text": "\u705C"}  // Value: 灜

Python:

char = '\u705C'
print(char)  # Output: 灜

Perl:

my $char = "\x{705C}";
print $char;  # Output: 灜

PHP:

$char = "\x{705C}";
echo $char;  // Output: 灜

Ruby:

char = "\u{705C}"
puts char  # Output: 灜

Rust:

let c = '\u{705C}';
println!("{}", c);  // Output: 灜

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00705C";  /* Display: 灜 */
}

HTML Decimal:

<p>HTML decimal: &#28764;</p>  <!-- Display: 灜 -->

HTML Hexadecimal:

<p>HTML hex: &#x705C;</p>  <!-- Display: 灜 -->

URL Encoding:

// 灜 URL encoding
https://unicodefinder.com/search.php?query=%E7%81%9C

Encodings

MD5:

c3086e07d9348089ef93e9acac710d4e

SHA1:

8b9d522e136da5d268556c0593427066ac753634

Base64:

54Gc