Unicode Finder

"熢" U+71A2(CJK UNIFIED IDEOGRAPH-71A2)

U+71A2
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-71A2

Programming

C
\u71A2
JavaScript
\u71A2
Java
\u71A2
Json
\u71A2
Python
\u71A2
Perl
\x{71A2}
PHP
\x{71A2}
Ruby
\u{71A2}
Rust
\u{71A2}
Go
\u71A2

Web

CSS
\0071A2
HtmlDecimal
熢
HtmlHexadecimal
熢
Url
%E7%86%A2

Code

MD5
51a50a90332f708489782f592218986e
Sha1
39f0eb3f620dbe130b99913bacd08f393258ba0c
Base64
54ai

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u71A2';
console.log(char);  // Output: 熢

Java:

char c = '\u71A2';
System.out.println(c);  // Output: 熢

JSON:

{"text": "\u71A2"}  // Value: 熢

Python:

char = '\u71A2'
print(char)  # Output: 熢

Perl:

my $char = "\x{71A2}";
print $char;  # Output: 熢

PHP:

$char = "\x{71A2}";
echo $char;  // Output: 熢

Ruby:

char = "\u{71A2}"
puts char  # Output: 熢

Rust:

let c = '\u{71A2}';
println!("{}", c);  // Output: 熢

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0071A2";  /* Display: 熢 */
}

HTML Decimal:

<p>HTML decimal: &#29090;</p>  <!-- Display: 熢 -->

HTML Hexadecimal:

<p>HTML hex: &#x71A2;</p>  <!-- Display: 熢 -->

URL Encoding:

// 熢 URL encoding
https://unicodefinder.com/search.php?query=%E7%86%A2

Encodings

MD5:

51a50a90332f708489782f592218986e

SHA1:

39f0eb3f620dbe130b99913bacd08f393258ba0c

Base64:

54ai