Unicode Finder

"炅" U+7085(CJK UNIFIED IDEOGRAPH-7085)

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

Programming

C
\u7085
JavaScript
\u7085
Java
\u7085
Json
\u7085
Python
\u7085
Perl
\x{7085}
PHP
\x{7085}
Ruby
\u{7085}
Rust
\u{7085}
Go
\u7085

Web

CSS
\007085
HtmlDecimal
炅
HtmlHexadecimal
炅
Url
%E7%82%85

Code

MD5
74a9a23617e48790254a616014338ee3
Sha1
24dc01655f5994ae59f99eefe9f1cb893ee73823
Base64
54KF

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7085';
console.log(char);  // Output: 炅

Java:

char c = '\u7085';
System.out.println(c);  // Output: 炅

JSON:

{"text": "\u7085"}  // Value: 炅

Python:

char = '\u7085'
print(char)  # Output: 炅

Perl:

my $char = "\x{7085}";
print $char;  # Output: 炅

PHP:

$char = "\x{7085}";
echo $char;  // Output: 炅

Ruby:

char = "\u{7085}"
puts char  # Output: 炅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007085";  /* Display: 炅 */
}

HTML Decimal:

<p>HTML decimal: &#28805;</p>  <!-- Display: 炅 -->

HTML Hexadecimal:

<p>HTML hex: &#x7085;</p>  <!-- Display: 炅 -->

URL Encoding:

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

Encodings

MD5:

74a9a23617e48790254a616014338ee3

SHA1:

24dc01655f5994ae59f99eefe9f1cb893ee73823

Base64:

54KF