Unicode Finder

"炜" U+709C(CJK UNIFIED IDEOGRAPH-709C)

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

Programming

C
\u709C
JavaScript
\u709C
Java
\u709C
Json
\u709C
Python
\u709C
Perl
\x{709C}
PHP
\x{709C}
Ruby
\u{709C}
Rust
\u{709C}
Go
\u709C

Web

CSS
\00709C
HtmlDecimal
炜
HtmlHexadecimal
炜
Url
%E7%82%9C

Code

MD5
a3ecc7c6a59b060119351b29ff811e9f
Sha1
5c4ec41030451fc7d461a34ed2b6ced095e36e30
Base64
54Kc

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u709C';
console.log(char);  // Output: 炜

Java:

char c = '\u709C';
System.out.println(c);  // Output: 炜

JSON:

{"text": "\u709C"}  // Value: 炜

Python:

char = '\u709C'
print(char)  # Output: 炜

Perl:

my $char = "\x{709C}";
print $char;  # Output: 炜

PHP:

$char = "\x{709C}";
echo $char;  // Output: 炜

Ruby:

char = "\u{709C}"
puts char  # Output: 炜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28828;</p>  <!-- Display: 炜 -->

HTML Hexadecimal:

<p>HTML hex: &#x709C;</p>  <!-- Display: 炜 -->

URL Encoding:

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

Encodings

MD5:

a3ecc7c6a59b060119351b29ff811e9f

SHA1:

5c4ec41030451fc7d461a34ed2b6ced095e36e30

Base64:

54Kc