Unicode Finder

"韲" U+97F2(CJK UNIFIED IDEOGRAPH-97F2)

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

Programming

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

Web

CSS
\0097F2
HtmlDecimal
韲
HtmlHexadecimal
韲
Url
%E9%9F%B2

Code

MD5
63ddc3402ab98e5cb8b6ad227977d292
Sha1
98ba042a9f2495b5e62c46809f323f5d623eaded
Base64
6Z+y

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u97F2';
console.log(char);  // Output: 韲

Java:

char c = '\u97F2';
System.out.println(c);  // Output: 韲

JSON:

{"text": "\u97F2"}  // Value: 韲

Python:

char = '\u97F2'
print(char)  # Output: 韲

Perl:

my $char = "\x{97F2}";
print $char;  # Output: 韲

PHP:

$char = "\x{97F2}";
echo $char;  // Output: 韲

Ruby:

char = "\u{97F2}"
puts char  # Output: 韲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38898;</p>  <!-- Display: 韲 -->

HTML Hexadecimal:

<p>HTML hex: &#x97F2;</p>  <!-- Display: 韲 -->

URL Encoding:

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

Encodings

MD5:

63ddc3402ab98e5cb8b6ad227977d292

SHA1:

98ba042a9f2495b5e62c46809f323f5d623eaded

Base64:

6Z+y