Unicode Finder

"韬" U+97EC(CJK UNIFIED IDEOGRAPH-97EC)

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

Programming

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

Web

CSS
\0097EC
HtmlDecimal
韬
HtmlHexadecimal
韬
Url
%E9%9F%AC

Code

MD5
2d43c6ca2815011d3ef3bf53280662ae
Sha1
21a14a7219cf3e0f69f2f9a277b4f879a27035b2
Base64
6Z+s

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u97EC';
console.log(char);  // Output: 韬

Java:

char c = '\u97EC';
System.out.println(c);  // Output: 韬

JSON:

{"text": "\u97EC"}  // Value: 韬

Python:

char = '\u97EC'
print(char)  # Output: 韬

Perl:

my $char = "\x{97EC}";
print $char;  # Output: 韬

PHP:

$char = "\x{97EC}";
echo $char;  // Output: 韬

Ruby:

char = "\u{97EC}"
puts char  # Output: 韬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38892;</p>  <!-- Display: 韬 -->

HTML Hexadecimal:

<p>HTML hex: &#x97EC;</p>  <!-- Display: 韬 -->

URL Encoding:

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

Encodings

MD5:

2d43c6ca2815011d3ef3bf53280662ae

SHA1:

21a14a7219cf3e0f69f2f9a277b4f879a27035b2

Base64:

6Z+s