Unicode Finder

"熹" U+71B9(CJK UNIFIED IDEOGRAPH-71B9)

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

Programming

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

Web

CSS
\0071B9
HtmlDecimal
熹
HtmlHexadecimal
熹
Url
%E7%86%B9

Code

MD5
f3dece17849ffbe3c7808b5b7859e8f2
Sha1
49a201934496dc7c44f2aaf7b1b03b896ae6686f
Base64
54a5

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u71B9';
console.log(char);  // Output: 熹

Java:

char c = '\u71B9';
System.out.println(c);  // Output: 熹

JSON:

{"text": "\u71B9"}  // Value: 熹

Python:

char = '\u71B9'
print(char)  # Output: 熹

Perl:

my $char = "\x{71B9}";
print $char;  # Output: 熹

PHP:

$char = "\x{71B9}";
echo $char;  // Output: 熹

Ruby:

char = "\u{71B9}"
puts char  # Output: 熹

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29113;</p>  <!-- Display: 熹 -->

HTML Hexadecimal:

<p>HTML hex: &#x71B9;</p>  <!-- Display: 熹 -->

URL Encoding:

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

Encodings

MD5:

f3dece17849ffbe3c7808b5b7859e8f2

SHA1:

49a201934496dc7c44f2aaf7b1b03b896ae6686f

Base64:

54a5