Unicode Finder

"冗" U+5197(CJK UNIFIED IDEOGRAPH-5197)

U+5197
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-5197

Programming

C
\u5197
JavaScript
\u5197
Java
\u5197
Json
\u5197
Python
\u5197
Perl
\x{5197}
PHP
\x{5197}
Ruby
\u{5197}
Rust
\u{5197}
Go
\u5197

Web

CSS
\005197
HtmlDecimal
冗
HtmlHexadecimal
冗
Url
%E5%86%97

Code

MD5
a6e33febb72187c94e60c5f08f3455a0
Sha1
415d8e2c4f222fc7c879e76246e18f30fba24c11
Base64
5YaX

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5197';
console.log(char);  // Output: 冗

Java:

char c = '\u5197';
System.out.println(c);  // Output: 冗

JSON:

{"text": "\u5197"}  // Value: 冗

Python:

char = '\u5197'
print(char)  # Output: 冗

Perl:

my $char = "\x{5197}";
print $char;  # Output: 冗

PHP:

$char = "\x{5197}";
echo $char;  // Output: 冗

Ruby:

char = "\u{5197}"
puts char  # Output: 冗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005197";  /* Display: 冗 */
}

HTML Decimal:

<p>HTML decimal: &#20887;</p>  <!-- Display: 冗 -->

HTML Hexadecimal:

<p>HTML hex: &#x5197;</p>  <!-- Display: 冗 -->

URL Encoding:

// 冗 URL encoding
https://unicodefinder.com/search.php?query=%E5%86%97

Encodings

MD5:

a6e33febb72187c94e60c5f08f3455a0

SHA1:

415d8e2c4f222fc7c879e76246e18f30fba24c11

Base64:

5YaX