Unicode Finder

"玲" U+73B2(CJK UNIFIED IDEOGRAPH-73B2)

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

Programming

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

Web

CSS
\0073B2
HtmlDecimal
玲
HtmlHexadecimal
玲
Url
%E7%8E%B2

Code

MD5
f75908a05233b6fa661d9062e9779b15
Sha1
05a2f77dda889ac357afb61cc6a931072c408008
Base64
546y

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u73B2';
console.log(char);  // Output: 玲

Java:

char c = '\u73B2';
System.out.println(c);  // Output: 玲

JSON:

{"text": "\u73B2"}  // Value: 玲

Python:

char = '\u73B2'
print(char)  # Output: 玲

Perl:

my $char = "\x{73B2}";
print $char;  # Output: 玲

PHP:

$char = "\x{73B2}";
echo $char;  // Output: 玲

Ruby:

char = "\u{73B2}"
puts char  # Output: 玲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29618;</p>  <!-- Display: 玲 -->

HTML Hexadecimal:

<p>HTML hex: &#x73B2;</p>  <!-- Display: 玲 -->

URL Encoding:

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

Encodings

MD5:

f75908a05233b6fa661d9062e9779b15

SHA1:

05a2f77dda889ac357afb61cc6a931072c408008

Base64:

546y