Unicode Finder

"玬" U+73AC(CJK UNIFIED IDEOGRAPH-73AC)

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

Programming

C
\u73AC
JavaScript
\u73AC
Java
\u73AC
Json
\u73AC
Python
\u73AC
Perl
\x{73AC}
PHP
\x{73AC}
Ruby
\u{73AC}
Rust
\u{73AC}
Go
\u73AC

Web

CSS
\0073AC
HtmlDecimal
玬
HtmlHexadecimal
玬
Url
%E7%8E%AC

Code

MD5
7200d70a09d285cf6d32bcde5e4ec09d
Sha1
5cddc8512341da6182b46f7789059fc3ab3ebe7e
Base64
546s

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u73AC';
console.log(char);  // Output: 玬

Java:

char c = '\u73AC';
System.out.println(c);  // Output: 玬

JSON:

{"text": "\u73AC"}  // Value: 玬

Python:

char = '\u73AC'
print(char)  # Output: 玬

Perl:

my $char = "\x{73AC}";
print $char;  # Output: 玬

PHP:

$char = "\x{73AC}";
echo $char;  // Output: 玬

Ruby:

char = "\u{73AC}"
puts char  # Output: 玬

Rust:

let c = '\u{73AC}';
println!("{}", c);  // Output: 玬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0073AC";  /* Display: 玬 */
}

HTML Decimal:

<p>HTML decimal: &#29612;</p>  <!-- Display: 玬 -->

HTML Hexadecimal:

<p>HTML hex: &#x73AC;</p>  <!-- Display: 玬 -->

URL Encoding:

// 玬 URL encoding
https://unicodefinder.com/search.php?query=%E7%8E%AC

Encodings

MD5:

7200d70a09d285cf6d32bcde5e4ec09d

SHA1:

5cddc8512341da6182b46f7789059fc3ab3ebe7e

Base64:

546s