Unicode Finder

"韭" U+97ED(CJK UNIFIED IDEOGRAPH-97ED)

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

Programming

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

Web

CSS
\0097ED
HtmlDecimal
韭
HtmlHexadecimal
韭
Url
%E9%9F%AD

Code

MD5
74d27286c72d7426950ae4095e86e737
Sha1
e55968710bef31524b870d0a38184780b6ff669b
Base64
6Z+t

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u97ED';
console.log(char);  // Output: 韭

Java:

char c = '\u97ED';
System.out.println(c);  // Output: 韭

JSON:

{"text": "\u97ED"}  // Value: 韭

Python:

char = '\u97ED'
print(char)  # Output: 韭

Perl:

my $char = "\x{97ED}";
print $char;  # Output: 韭

PHP:

$char = "\x{97ED}";
echo $char;  // Output: 韭

Ruby:

char = "\u{97ED}"
puts char  # Output: 韭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38893;</p>  <!-- Display: 韭 -->

HTML Hexadecimal:

<p>HTML hex: &#x97ED;</p>  <!-- Display: 韭 -->

URL Encoding:

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

Encodings

MD5:

74d27286c72d7426950ae4095e86e737

SHA1:

e55968710bef31524b870d0a38184780b6ff669b

Base64:

6Z+t