Unicode Finder

"獳" U+7373(CJK UNIFIED IDEOGRAPH-7373)

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

Programming

C
\u7373
JavaScript
\u7373
Java
\u7373
Json
\u7373
Python
\u7373
Perl
\x{7373}
PHP
\x{7373}
Ruby
\u{7373}
Rust
\u{7373}
Go
\u7373

Web

CSS
\007373
HtmlDecimal
獳
HtmlHexadecimal
獳
Url
%E7%8D%B3

Code

MD5
c8dfcbcdc2d3b1cd48cd203eecf9e60e
Sha1
8d07dc27afee184d688dd663e3714cf73a68197c
Base64
542z

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7373';
console.log(char);  // Output: 獳

Java:

char c = '\u7373';
System.out.println(c);  // Output: 獳

JSON:

{"text": "\u7373"}  // Value: 獳

Python:

char = '\u7373'
print(char)  # Output: 獳

Perl:

my $char = "\x{7373}";
print $char;  # Output: 獳

PHP:

$char = "\x{7373}";
echo $char;  // Output: 獳

Ruby:

char = "\u{7373}"
puts char  # Output: 獳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007373";  /* Display: 獳 */
}

HTML Decimal:

<p>HTML decimal: &#29555;</p>  <!-- Display: 獳 -->

HTML Hexadecimal:

<p>HTML hex: &#x7373;</p>  <!-- Display: 獳 -->

URL Encoding:

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

Encodings

MD5:

c8dfcbcdc2d3b1cd48cd203eecf9e60e

SHA1:

8d07dc27afee184d688dd663e3714cf73a68197c

Base64:

542z