Unicode Finder

"褯" U+892F(CJK UNIFIED IDEOGRAPH-892F)

U+892F
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-892F

Programming

C
\u892F
JavaScript
\u892F
Java
\u892F
Json
\u892F
Python
\u892F
Perl
\x{892F}
PHP
\x{892F}
Ruby
\u{892F}
Rust
\u{892F}
Go
\u892F

Web

CSS
\00892F
HtmlDecimal
褯
HtmlHexadecimal
褯
Url
%E8%A4%AF

Code

MD5
84f792078ab64afdf5b7b5e775587508
Sha1
112919f9667391ebd80c5e30858fc437805fad15
Base64
6KSv

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u892F';
console.log(char);  // Output: 褯

Java:

char c = '\u892F';
System.out.println(c);  // Output: 褯

JSON:

{"text": "\u892F"}  // Value: 褯

Python:

char = '\u892F'
print(char)  # Output: 褯

Perl:

my $char = "\x{892F}";
print $char;  # Output: 褯

PHP:

$char = "\x{892F}";
echo $char;  // Output: 褯

Ruby:

char = "\u{892F}"
puts char  # Output: 褯

Rust:

let c = '\u{892F}';
println!("{}", c);  // Output: 褯

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00892F";  /* Display: 褯 */
}

HTML Decimal:

<p>HTML decimal: &#35119;</p>  <!-- Display: 褯 -->

HTML Hexadecimal:

<p>HTML hex: &#x892F;</p>  <!-- Display: 褯 -->

URL Encoding:

// 褯 URL encoding
https://unicodefinder.com/search.php?query=%E8%A4%AF

Encodings

MD5:

84f792078ab64afdf5b7b5e775587508

SHA1:

112919f9667391ebd80c5e30858fc437805fad15

Base64:

6KSv