Unicode Finder

"托" U+6258(CJK UNIFIED IDEOGRAPH-6258)

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

Programming

C
\u6258
JavaScript
\u6258
Java
\u6258
Json
\u6258
Python
\u6258
Perl
\x{6258}
PHP
\x{6258}
Ruby
\u{6258}
Rust
\u{6258}
Go
\u6258

Web

CSS
\006258
HtmlDecimal
托
HtmlHexadecimal
托
Url
%E6%89%98

Code

MD5
0cdd63e6de7090439acfce3fd8e8ef67
Sha1
91694e080c0a8b12aa146a9d8e4dcf8d8e26811b
Base64
5omY

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6258';
console.log(char);  // Output: 托

Java:

char c = '\u6258';
System.out.println(c);  // Output: 托

JSON:

{"text": "\u6258"}  // Value: 托

Python:

char = '\u6258'
print(char)  # Output: 托

Perl:

my $char = "\x{6258}";
print $char;  # Output: 托

PHP:

$char = "\x{6258}";
echo $char;  // Output: 托

Ruby:

char = "\u{6258}"
puts char  # Output: 托

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006258";  /* Display: 托 */
}

HTML Decimal:

<p>HTML decimal: &#25176;</p>  <!-- Display: 托 -->

HTML Hexadecimal:

<p>HTML hex: &#x6258;</p>  <!-- Display: 托 -->

URL Encoding:

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

Encodings

MD5:

0cdd63e6de7090439acfce3fd8e8ef67

SHA1:

91694e080c0a8b12aa146a9d8e4dcf8d8e26811b

Base64:

5omY