Unicode Finder

"褍" U+890D(CJK UNIFIED IDEOGRAPH-890D)

U+890D
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-890D

Programming

C
\u890D
JavaScript
\u890D
Java
\u890D
Json
\u890D
Python
\u890D
Perl
\x{890D}
PHP
\x{890D}
Ruby
\u{890D}
Rust
\u{890D}
Go
\u890D

Web

CSS
\00890D
HtmlDecimal
褍
HtmlHexadecimal
褍
Url
%E8%A4%8D

Code

MD5
3326bc051dde71988ad526a6b5131bf1
Sha1
c42ca5d889d88cae75f66f768726667287d6b2bb
Base64
6KSN

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u890D';
console.log(char);  // Output: 褍

Java:

char c = '\u890D';
System.out.println(c);  // Output: 褍

JSON:

{"text": "\u890D"}  // Value: 褍

Python:

char = '\u890D'
print(char)  # Output: 褍

Perl:

my $char = "\x{890D}";
print $char;  # Output: 褍

PHP:

$char = "\x{890D}";
echo $char;  // Output: 褍

Ruby:

char = "\u{890D}"
puts char  # Output: 褍

Rust:

let c = '\u{890D}';
println!("{}", c);  // Output: 褍

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00890D";  /* Display: 褍 */
}

HTML Decimal:

<p>HTML decimal: &#35085;</p>  <!-- Display: 褍 -->

HTML Hexadecimal:

<p>HTML hex: &#x890D;</p>  <!-- Display: 褍 -->

URL Encoding:

// 褍 URL encoding
https://unicodefinder.com/search.php?query=%E8%A4%8D

Encodings

MD5:

3326bc051dde71988ad526a6b5131bf1

SHA1:

c42ca5d889d88cae75f66f768726667287d6b2bb

Base64:

6KSN