Unicode Finder

"料" U+6599(CJK UNIFIED IDEOGRAPH-6599)

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

Programming

C
\u6599
JavaScript
\u6599
Java
\u6599
Json
\u6599
Python
\u6599
Perl
\x{6599}
PHP
\x{6599}
Ruby
\u{6599}
Rust
\u{6599}
Go
\u6599

Web

CSS
\006599
HtmlDecimal
料
HtmlHexadecimal
料
Url
%E6%96%99

Code

MD5
aeb56c4858a738cca1b432d540733f83
Sha1
49efc042ad44cf5baf13b9dd0e74e6cedb4448df
Base64
5paZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6599';
console.log(char);  // Output: 料

Java:

char c = '\u6599';
System.out.println(c);  // Output: 料

JSON:

{"text": "\u6599"}  // Value: 料

Python:

char = '\u6599'
print(char)  # Output: 料

Perl:

my $char = "\x{6599}";
print $char;  # Output: 料

PHP:

$char = "\x{6599}";
echo $char;  // Output: 料

Ruby:

char = "\u{6599}"
puts char  # Output: 料

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006599";  /* Display: 料 */
}

HTML Decimal:

<p>HTML decimal: &#26009;</p>  <!-- Display: 料 -->

HTML Hexadecimal:

<p>HTML hex: &#x6599;</p>  <!-- Display: 料 -->

URL Encoding:

// 料 URL encoding
https://unicodefinder.com/search.php?query=%E6%96%99

Encodings

MD5:

aeb56c4858a738cca1b432d540733f83

SHA1:

49efc042ad44cf5baf13b9dd0e74e6cedb4448df

Base64:

5paZ