Unicode Finder

"熬" U+71AC(CJK UNIFIED IDEOGRAPH-71AC)

U+71AC
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-71AC

Programming

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

Web

CSS
\0071AC
HtmlDecimal
熬
HtmlHexadecimal
熬
Url
%E7%86%AC

Code

MD5
71aa3e55e29004f5dd48e9fe4db17233
Sha1
93a14dc8ab54ac25a026d19f905b2fdb6b440534
Base64
54as

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u71AC';
console.log(char);  // Output: 熬

Java:

char c = '\u71AC';
System.out.println(c);  // Output: 熬

JSON:

{"text": "\u71AC"}  // Value: 熬

Python:

char = '\u71AC'
print(char)  # Output: 熬

Perl:

my $char = "\x{71AC}";
print $char;  # Output: 熬

PHP:

$char = "\x{71AC}";
echo $char;  // Output: 熬

Ruby:

char = "\u{71AC}"
puts char  # Output: 熬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29100;</p>  <!-- Display: 熬 -->

HTML Hexadecimal:

<p>HTML hex: &#x71AC;</p>  <!-- Display: 熬 -->

URL Encoding:

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

Encodings

MD5:

71aa3e55e29004f5dd48e9fe4db17233

SHA1:

93a14dc8ab54ac25a026d19f905b2fdb6b440534

Base64:

54as