Unicode Finder

"玫" U+73AB(CJK UNIFIED IDEOGRAPH-73AB)

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

Programming

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

Web

CSS
\0073AB
HtmlDecimal
玫
HtmlHexadecimal
玫
Url
%E7%8E%AB

Code

MD5
f55669dfcee8e8e195836b22c80beea9
Sha1
cd418b47921ba742c390388f40a51978336ff5c7
Base64
546r

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u73AB';
console.log(char);  // Output: 玫

Java:

char c = '\u73AB';
System.out.println(c);  // Output: 玫

JSON:

{"text": "\u73AB"}  // Value: 玫

Python:

char = '\u73AB'
print(char)  # Output: 玫

Perl:

my $char = "\x{73AB}";
print $char;  # Output: 玫

PHP:

$char = "\x{73AB}";
echo $char;  // Output: 玫

Ruby:

char = "\u{73AB}"
puts char  # Output: 玫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29611;</p>  <!-- Display: 玫 -->

HTML Hexadecimal:

<p>HTML hex: &#x73AB;</p>  <!-- Display: 玫 -->

URL Encoding:

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

Encodings

MD5:

f55669dfcee8e8e195836b22c80beea9

SHA1:

cd418b47921ba742c390388f40a51978336ff5c7

Base64:

546r