Unicode Finder

"礝" U+791D(CJK UNIFIED IDEOGRAPH-791D)

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

Programming

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

Web

CSS
\00791D
HtmlDecimal
礝
HtmlHexadecimal
礝
Url
%E7%A4%9D

Code

MD5
2e43061f49d2de6d89c03b8618fbf0fb
Sha1
b2f4c37e3da8af7a0dac10c568a280705e5a0528
Base64
56Sd

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u791D';
console.log(char);  // Output: 礝

Java:

char c = '\u791D';
System.out.println(c);  // Output: 礝

JSON:

{"text": "\u791D"}  // Value: 礝

Python:

char = '\u791D'
print(char)  # Output: 礝

Perl:

my $char = "\x{791D}";
print $char;  # Output: 礝

PHP:

$char = "\x{791D}";
echo $char;  // Output: 礝

Ruby:

char = "\u{791D}"
puts char  # Output: 礝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31005;</p>  <!-- Display: 礝 -->

HTML Hexadecimal:

<p>HTML hex: &#x791D;</p>  <!-- Display: 礝 -->

URL Encoding:

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

Encodings

MD5:

2e43061f49d2de6d89c03b8618fbf0fb

SHA1:

b2f4c37e3da8af7a0dac10c568a280705e5a0528

Base64:

56Sd