Unicode Finder

"扥" U+6265(CJK UNIFIED IDEOGRAPH-6265)

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

Programming

C
\u6265
JavaScript
\u6265
Java
\u6265
Json
\u6265
Python
\u6265
Perl
\x{6265}
PHP
\x{6265}
Ruby
\u{6265}
Rust
\u{6265}
Go
\u6265

Web

CSS
\006265
HtmlDecimal
扥
HtmlHexadecimal
扥
Url
%E6%89%A5

Code

MD5
383c928280ab7c08c208e3b92bcdfd37
Sha1
07983016381bff14385d581139a751178afc64e4
Base64
5oml

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6265';
console.log(char);  // Output: 扥

Java:

char c = '\u6265';
System.out.println(c);  // Output: 扥

JSON:

{"text": "\u6265"}  // Value: 扥

Python:

char = '\u6265'
print(char)  # Output: 扥

Perl:

my $char = "\x{6265}";
print $char;  # Output: 扥

PHP:

$char = "\x{6265}";
echo $char;  // Output: 扥

Ruby:

char = "\u{6265}"
puts char  # Output: 扥

Rust:

let c = '\u{6265}';
println!("{}", c);  // Output: 扥

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006265";  /* Display: 扥 */
}

HTML Decimal:

<p>HTML decimal: &#25189;</p>  <!-- Display: 扥 -->

HTML Hexadecimal:

<p>HTML hex: &#x6265;</p>  <!-- Display: 扥 -->

URL Encoding:

// 扥 URL encoding
https://unicodefinder.com/search.php?query=%E6%89%A5

Encodings

MD5:

383c928280ab7c08c208e3b92bcdfd37

SHA1:

07983016381bff14385d581139a751178afc64e4

Base64:

5oml