Unicode Finder

"炬" U+70AC(CJK UNIFIED IDEOGRAPH-70AC)

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

Programming

C
\u70AC
JavaScript
\u70AC
Java
\u70AC
Json
\u70AC
Python
\u70AC
Perl
\x{70AC}
PHP
\x{70AC}
Ruby
\u{70AC}
Rust
\u{70AC}
Go
\u70AC

Web

CSS
\0070AC
HtmlDecimal
炬
HtmlHexadecimal
炬
Url
%E7%82%AC

Code

MD5
56485a40eb403e2590b62b9b854ce96d
Sha1
7b3a95cb5c47d47d9c1d0a370f78ce8f37135880
Base64
54Ks

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u70AC';
console.log(char);  // Output: 炬

Java:

char c = '\u70AC';
System.out.println(c);  // Output: 炬

JSON:

{"text": "\u70AC"}  // Value: 炬

Python:

char = '\u70AC'
print(char)  # Output: 炬

Perl:

my $char = "\x{70AC}";
print $char;  # Output: 炬

PHP:

$char = "\x{70AC}";
echo $char;  // Output: 炬

Ruby:

char = "\u{70AC}"
puts char  # Output: 炬

Rust:

let c = '\u{70AC}';
println!("{}", c);  // Output: 炬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0070AC";  /* Display: 炬 */
}

HTML Decimal:

<p>HTML decimal: &#28844;</p>  <!-- Display: 炬 -->

HTML Hexadecimal:

<p>HTML hex: &#x70AC;</p>  <!-- Display: 炬 -->

URL Encoding:

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

Encodings

MD5:

56485a40eb403e2590b62b9b854ce96d

SHA1:

7b3a95cb5c47d47d9c1d0a370f78ce8f37135880

Base64:

54Ks