Unicode Finder

"灨" U+7068(CJK UNIFIED IDEOGRAPH-7068)

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

Programming

C
\u7068
JavaScript
\u7068
Java
\u7068
Json
\u7068
Python
\u7068
Perl
\x{7068}
PHP
\x{7068}
Ruby
\u{7068}
Rust
\u{7068}
Go
\u7068

Web

CSS
\007068
HtmlDecimal
灨
HtmlHexadecimal
灨
Url
%E7%81%A8

Code

MD5
e2d3a497492dedf18a1a12c35d22d541
Sha1
24959e73e9219469e3e772e6fca8240e8a4e56c5
Base64
54Go

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7068';
console.log(char);  // Output: 灨

Java:

char c = '\u7068';
System.out.println(c);  // Output: 灨

JSON:

{"text": "\u7068"}  // Value: 灨

Python:

char = '\u7068'
print(char)  # Output: 灨

Perl:

my $char = "\x{7068}";
print $char;  # Output: 灨

PHP:

$char = "\x{7068}";
echo $char;  // Output: 灨

Ruby:

char = "\u{7068}"
puts char  # Output: 灨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007068";  /* Display: 灨 */
}

HTML Decimal:

<p>HTML decimal: &#28776;</p>  <!-- Display: 灨 -->

HTML Hexadecimal:

<p>HTML hex: &#x7068;</p>  <!-- Display: 灨 -->

URL Encoding:

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

Encodings

MD5:

e2d3a497492dedf18a1a12c35d22d541

SHA1:

24959e73e9219469e3e772e6fca8240e8a4e56c5

Base64:

54Go