Unicode Finder

"炒" U+7092(CJK UNIFIED IDEOGRAPH-7092)

U+7092
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7092

Programming

C
\u7092
JavaScript
\u7092
Java
\u7092
Json
\u7092
Python
\u7092
Perl
\x{7092}
PHP
\x{7092}
Ruby
\u{7092}
Rust
\u{7092}
Go
\u7092

Web

CSS
\007092
HtmlDecimal
炒
HtmlHexadecimal
炒
Url
%E7%82%92

Code

MD5
9254523ee408a2038049cb0ffba18e13
Sha1
2c52d2c76a956cd4495146ed35a2852a3eda407d
Base64
54KS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7092';
console.log(char);  // Output: 炒

Java:

char c = '\u7092';
System.out.println(c);  // Output: 炒

JSON:

{"text": "\u7092"}  // Value: 炒

Python:

char = '\u7092'
print(char)  # Output: 炒

Perl:

my $char = "\x{7092}";
print $char;  # Output: 炒

PHP:

$char = "\x{7092}";
echo $char;  // Output: 炒

Ruby:

char = "\u{7092}"
puts char  # Output: 炒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007092";  /* Display: 炒 */
}

HTML Decimal:

<p>HTML decimal: &#28818;</p>  <!-- Display: 炒 -->

HTML Hexadecimal:

<p>HTML hex: &#x7092;</p>  <!-- Display: 炒 -->

URL Encoding:

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

Encodings

MD5:

9254523ee408a2038049cb0ffba18e13

SHA1:

2c52d2c76a956cd4495146ed35a2852a3eda407d

Base64:

54KS