Unicode Finder

"礜" U+791C(CJK UNIFIED IDEOGRAPH-791C)

U+791C
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-791C

Programming

C
\u791C
JavaScript
\u791C
Java
\u791C
Json
\u791C
Python
\u791C
Perl
\x{791C}
PHP
\x{791C}
Ruby
\u{791C}
Rust
\u{791C}
Go
\u791C

Web

CSS
\00791C
HtmlDecimal
礜
HtmlHexadecimal
礜
Url
%E7%A4%9C

Code

MD5
892513492159779ebe0356a77caebecc
Sha1
3b151c49333296a49852a43194c40fbd4077f848
Base64
56Sc

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u791C';
console.log(char);  // Output: 礜

Java:

char c = '\u791C';
System.out.println(c);  // Output: 礜

JSON:

{"text": "\u791C"}  // Value: 礜

Python:

char = '\u791C'
print(char)  # Output: 礜

Perl:

my $char = "\x{791C}";
print $char;  # Output: 礜

PHP:

$char = "\x{791C}";
echo $char;  // Output: 礜

Ruby:

char = "\u{791C}"
puts char  # Output: 礜

Rust:

let c = '\u{791C}';
println!("{}", c);  // Output: 礜

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00791C";  /* Display: 礜 */
}

HTML Decimal:

<p>HTML decimal: &#31004;</p>  <!-- Display: 礜 -->

HTML Hexadecimal:

<p>HTML hex: &#x791C;</p>  <!-- Display: 礜 -->

URL Encoding:

// 礜 URL encoding
https://unicodefinder.com/search.php?query=%E7%A4%9C

Encodings

MD5:

892513492159779ebe0356a77caebecc

SHA1:

3b151c49333296a49852a43194c40fbd4077f848

Base64:

56Sc