Unicode Finder

"灲" U+7072(CJK UNIFIED IDEOGRAPH-7072)

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

Programming

C
\u7072
JavaScript
\u7072
Java
\u7072
Json
\u7072
Python
\u7072
Perl
\x{7072}
PHP
\x{7072}
Ruby
\u{7072}
Rust
\u{7072}
Go
\u7072

Web

CSS
\007072
HtmlDecimal
灲
HtmlHexadecimal
灲
Url
%E7%81%B2

Code

MD5
d21d851ab9da666cb6f8576ff860e486
Sha1
ecb125fa2945bb1717d1d8736fd6e54aaddf21ab
Base64
54Gy

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7072';
console.log(char);  // Output: 灲

Java:

char c = '\u7072';
System.out.println(c);  // Output: 灲

JSON:

{"text": "\u7072"}  // Value: 灲

Python:

char = '\u7072'
print(char)  # Output: 灲

Perl:

my $char = "\x{7072}";
print $char;  # Output: 灲

PHP:

$char = "\x{7072}";
echo $char;  // Output: 灲

Ruby:

char = "\u{7072}"
puts char  # Output: 灲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007072";  /* Display: 灲 */
}

HTML Decimal:

<p>HTML decimal: &#28786;</p>  <!-- Display: 灲 -->

HTML Hexadecimal:

<p>HTML hex: &#x7072;</p>  <!-- Display: 灲 -->

URL Encoding:

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

Encodings

MD5:

d21d851ab9da666cb6f8576ff860e486

SHA1:

ecb125fa2945bb1717d1d8736fd6e54aaddf21ab

Base64:

54Gy