Unicode Finder

"冒" U+5192(CJK UNIFIED IDEOGRAPH-5192)

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

Programming

C
\u5192
JavaScript
\u5192
Java
\u5192
Json
\u5192
Python
\u5192
Perl
\x{5192}
PHP
\x{5192}
Ruby
\u{5192}
Rust
\u{5192}
Go
\u5192

Web

CSS
\005192
HtmlDecimal
冒
HtmlHexadecimal
冒
Url
%E5%86%92

Code

MD5
d8dd7968df937dd1adfd4a0a63b646ab
Sha1
5a1c83c8e4c63841687ad700d416dfd2276fdb69
Base64
5YaS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5192';
console.log(char);  // Output: 冒

Java:

char c = '\u5192';
System.out.println(c);  // Output: 冒

JSON:

{"text": "\u5192"}  // Value: 冒

Python:

char = '\u5192'
print(char)  # Output: 冒

Perl:

my $char = "\x{5192}";
print $char;  # Output: 冒

PHP:

$char = "\x{5192}";
echo $char;  // Output: 冒

Ruby:

char = "\u{5192}"
puts char  # Output: 冒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005192";  /* Display: 冒 */
}

HTML Decimal:

<p>HTML decimal: &#20882;</p>  <!-- Display: 冒 -->

HTML Hexadecimal:

<p>HTML hex: &#x5192;</p>  <!-- Display: 冒 -->

URL Encoding:

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

Encodings

MD5:

d8dd7968df937dd1adfd4a0a63b646ab

SHA1:

5a1c83c8e4c63841687ad700d416dfd2276fdb69

Base64:

5YaS