Unicode Finder

"音" U+97F3(CJK UNIFIED IDEOGRAPH-97F3)

U+97F3
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-97F3

Programming

C
\u97F3
JavaScript
\u97F3
Java
\u97F3
Json
\u97F3
Python
\u97F3
Perl
\x{97F3}
PHP
\x{97F3}
Ruby
\u{97F3}
Rust
\u{97F3}
Go
\u97F3

Web

CSS
\0097F3
HtmlDecimal
音
HtmlHexadecimal
音
Url
%E9%9F%B3

Code

MD5
43ad15e73d11efcf950c591158df8230
Sha1
b7ec392a5d195b5936b2280958e25451efda44a5
Base64
6Z+z

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u97F3';
console.log(char);  // Output: 音

Java:

char c = '\u97F3';
System.out.println(c);  // Output: 音

JSON:

{"text": "\u97F3"}  // Value: 音

Python:

char = '\u97F3'
print(char)  # Output: 音

Perl:

my $char = "\x{97F3}";
print $char;  # Output: 音

PHP:

$char = "\x{97F3}";
echo $char;  // Output: 音

Ruby:

char = "\u{97F3}"
puts char  # Output: 音

Rust:

let c = '\u{97F3}';
println!("{}", c);  // Output: 音

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0097F3";  /* Display: 音 */
}

HTML Decimal:

<p>HTML decimal: &#38899;</p>  <!-- Display: 音 -->

HTML Hexadecimal:

<p>HTML hex: &#x97F3;</p>  <!-- Display: 音 -->

URL Encoding:

// 音 URL encoding
https://unicodefinder.com/search.php?query=%E9%9F%B3

Encodings

MD5:

43ad15e73d11efcf950c591158df8230

SHA1:

b7ec392a5d195b5936b2280958e25451efda44a5

Base64:

6Z+z