Unicode Finder

"州" U+5DDE(CJK UNIFIED IDEOGRAPH-5DDE)

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

Programming

C
\u5DDE
JavaScript
\u5DDE
Java
\u5DDE
Json
\u5DDE
Python
\u5DDE
Perl
\x{5DDE}
PHP
\x{5DDE}
Ruby
\u{5DDE}
Rust
\u{5DDE}
Go
\u5DDE

Web

CSS
\005DDE
HtmlDecimal
州
HtmlHexadecimal
州
Url
%E5%B7%9E

Code

MD5
b1f48f947cab79716236ebb0e4bd2a66
Sha1
07a0df7bce2f6136fa75243c797cd4cf6f333f0f
Base64
5bee

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5DDE';
console.log(char);  // Output: 州

Java:

char c = '\u5DDE';
System.out.println(c);  // Output: 州

JSON:

{"text": "\u5DDE"}  // Value: 州

Python:

char = '\u5DDE'
print(char)  # Output: 州

Perl:

my $char = "\x{5DDE}";
print $char;  # Output: 州

PHP:

$char = "\x{5DDE}";
echo $char;  // Output: 州

Ruby:

char = "\u{5DDE}"
puts char  # Output: 州

Rust:

let c = '\u{5DDE}';
println!("{}", c);  // Output: 州

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005DDE";  /* Display: 州 */
}

HTML Decimal:

<p>HTML decimal: &#24030;</p>  <!-- Display: 州 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DDE;</p>  <!-- Display: 州 -->

URL Encoding:

// 州 URL encoding
https://unicodefinder.com/search.php?query=%E5%B7%9E

Encodings

MD5:

b1f48f947cab79716236ebb0e4bd2a66

SHA1:

07a0df7bce2f6136fa75243c797cd4cf6f333f0f

Base64:

5bee