Unicode Finder

"獍" U+734D(CJK UNIFIED IDEOGRAPH-734D)

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

Programming

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

Web

CSS
\00734D
HtmlDecimal
獍
HtmlHexadecimal
獍
Url
%E7%8D%8D

Code

MD5
4918ee9beadf3f19e44110e66f3752b8
Sha1
85cddf3b4d2c5561e8b8ed2eb21a6f3ffd4967f1
Base64
542N

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u734D';
console.log(char);  // Output: 獍

Java:

char c = '\u734D';
System.out.println(c);  // Output: 獍

JSON:

{"text": "\u734D"}  // Value: 獍

Python:

char = '\u734D'
print(char)  # Output: 獍

Perl:

my $char = "\x{734D}";
print $char;  # Output: 獍

PHP:

$char = "\x{734D}";
echo $char;  // Output: 獍

Ruby:

char = "\u{734D}"
puts char  # Output: 獍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29517;</p>  <!-- Display: 獍 -->

HTML Hexadecimal:

<p>HTML hex: &#x734D;</p>  <!-- Display: 獍 -->

URL Encoding:

// 獍 URL encoding
https://unicodefinder.com/search.php?query=%E7%8D%8D

Encodings

MD5:

4918ee9beadf3f19e44110e66f3752b8

SHA1:

85cddf3b4d2c5561e8b8ed2eb21a6f3ffd4967f1

Base64:

542N