Unicode Finder

"炪" U+70AA(CJK UNIFIED IDEOGRAPH-70AA)

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

Programming

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

Web

CSS
\0070AA
HtmlDecimal
炪
HtmlHexadecimal
炪
Url
%E7%82%AA

Code

MD5
f8b7e066f315850d195374c3002a3cfd
Sha1
f6403420bbab22a1f046b36aeebc82fcb5c2aeec
Base64
54Kq

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u70AA';
console.log(char);  // Output: 炪

Java:

char c = '\u70AA';
System.out.println(c);  // Output: 炪

JSON:

{"text": "\u70AA"}  // Value: 炪

Python:

char = '\u70AA'
print(char)  # Output: 炪

Perl:

my $char = "\x{70AA}";
print $char;  # Output: 炪

PHP:

$char = "\x{70AA}";
echo $char;  // Output: 炪

Ruby:

char = "\u{70AA}"
puts char  # Output: 炪

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28842;</p>  <!-- Display: 炪 -->

HTML Hexadecimal:

<p>HTML hex: &#x70AA;</p>  <!-- Display: 炪 -->

URL Encoding:

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

Encodings

MD5:

f8b7e066f315850d195374c3002a3cfd

SHA1:

f6403420bbab22a1f046b36aeebc82fcb5c2aeec

Base64:

54Kq