Unicode Finder

"熿" U+71BF(CJK UNIFIED IDEOGRAPH-71BF)

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

Programming

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

Web

CSS
\0071BF
HtmlDecimal
熿
HtmlHexadecimal
熿
Url
%E7%86%BF

Code

MD5
c7901f265f69e923bc43cf702870d8dc
Sha1
ede7f95c04b51aa0956fc49f73ab114bab9783a0
Base64
54a/

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u71BF';
console.log(char);  // Output: 熿

Java:

char c = '\u71BF';
System.out.println(c);  // Output: 熿

JSON:

{"text": "\u71BF"}  // Value: 熿

Python:

char = '\u71BF'
print(char)  # Output: 熿

Perl:

my $char = "\x{71BF}";
print $char;  # Output: 熿

PHP:

$char = "\x{71BF}";
echo $char;  // Output: 熿

Ruby:

char = "\u{71BF}"
puts char  # Output: 熿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29119;</p>  <!-- Display: 熿 -->

HTML Hexadecimal:

<p>HTML hex: &#x71BF;</p>  <!-- Display: 熿 -->

URL Encoding:

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

Encodings

MD5:

c7901f265f69e923bc43cf702870d8dc

SHA1:

ede7f95c04b51aa0956fc49f73ab114bab9783a0

Base64:

54a/