Unicode Finder

"炀" U+7080(CJK UNIFIED IDEOGRAPH-7080)

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

Programming

C
\u7080
JavaScript
\u7080
Java
\u7080
Json
\u7080
Python
\u7080
Perl
\x{7080}
PHP
\x{7080}
Ruby
\u{7080}
Rust
\u{7080}
Go
\u7080

Web

CSS
\007080
HtmlDecimal
炀
HtmlHexadecimal
炀
Url
%E7%82%80

Code

MD5
622490d792ebf59be50832ebda79e18c
Sha1
cb4ed6919258e437bced01913a3b15b9a0e55f08
Base64
54KA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7080';
console.log(char);  // Output: 炀

Java:

char c = '\u7080';
System.out.println(c);  // Output: 炀

JSON:

{"text": "\u7080"}  // Value: 炀

Python:

char = '\u7080'
print(char)  # Output: 炀

Perl:

my $char = "\x{7080}";
print $char;  # Output: 炀

PHP:

$char = "\x{7080}";
echo $char;  // Output: 炀

Ruby:

char = "\u{7080}"
puts char  # Output: 炀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007080";  /* Display: 炀 */
}

HTML Decimal:

<p>HTML decimal: &#28800;</p>  <!-- Display: 炀 -->

HTML Hexadecimal:

<p>HTML hex: &#x7080;</p>  <!-- Display: 炀 -->

URL Encoding:

// 炀 URL encoding
https://unicodefinder.com/search.php?query=%E7%82%80

Encodings

MD5:

622490d792ebf59be50832ebda79e18c

SHA1:

cb4ed6919258e437bced01913a3b15b9a0e55f08

Base64:

54KA