Unicode Finder

"熯" U+71AF(CJK UNIFIED IDEOGRAPH-71AF)

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

Programming

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

Web

CSS
\0071AF
HtmlDecimal
熯
HtmlHexadecimal
熯
Url
%E7%86%AF

Code

MD5
121d938bbe3ddd30329bc0cedbb4ce7c
Sha1
8f82a1337654bae9f1efc9e089f772571a79a7fc
Base64
54av

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u71AF';
console.log(char);  // Output: 熯

Java:

char c = '\u71AF';
System.out.println(c);  // Output: 熯

JSON:

{"text": "\u71AF"}  // Value: 熯

Python:

char = '\u71AF'
print(char)  # Output: 熯

Perl:

my $char = "\x{71AF}";
print $char;  # Output: 熯

PHP:

$char = "\x{71AF}";
echo $char;  // Output: 熯

Ruby:

char = "\u{71AF}"
puts char  # Output: 熯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29103;</p>  <!-- Display: 熯 -->

HTML Hexadecimal:

<p>HTML hex: &#x71AF;</p>  <!-- Display: 熯 -->

URL Encoding:

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

Encodings

MD5:

121d938bbe3ddd30329bc0cedbb4ce7c

SHA1:

8f82a1337654bae9f1efc9e089f772571a79a7fc

Base64:

54av