Unicode Finder

"獉" U+7349(CJK UNIFIED IDEOGRAPH-7349)

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

Programming

C
\u7349
JavaScript
\u7349
Java
\u7349
Json
\u7349
Python
\u7349
Perl
\x{7349}
PHP
\x{7349}
Ruby
\u{7349}
Rust
\u{7349}
Go
\u7349

Web

CSS
\007349
HtmlDecimal
獉
HtmlHexadecimal
獉
Url
%E7%8D%89

Code

MD5
dc9b3f67191dd5e8c1baeb15020ce8ac
Sha1
9bd32054de301ddbcfbbfca34669342082b3a94c
Base64
542J

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7349';
console.log(char);  // Output: 獉

Java:

char c = '\u7349';
System.out.println(c);  // Output: 獉

JSON:

{"text": "\u7349"}  // Value: 獉

Python:

char = '\u7349'
print(char)  # Output: 獉

Perl:

my $char = "\x{7349}";
print $char;  # Output: 獉

PHP:

$char = "\x{7349}";
echo $char;  // Output: 獉

Ruby:

char = "\u{7349}"
puts char  # Output: 獉

Rust:

let c = '\u{7349}';
println!("{}", c);  // Output: 獉

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007349";  /* Display: 獉 */
}

HTML Decimal:

<p>HTML decimal: &#29513;</p>  <!-- Display: 獉 -->

HTML Hexadecimal:

<p>HTML hex: &#x7349;</p>  <!-- Display: 獉 -->

URL Encoding:

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

Encodings

MD5:

dc9b3f67191dd5e8c1baeb15020ce8ac

SHA1:

9bd32054de301ddbcfbbfca34669342082b3a94c

Base64:

542J