Unicode Finder

"醃" U+9183(CJK UNIFIED IDEOGRAPH-9183)

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

Programming

C
\u9183
JavaScript
\u9183
Java
\u9183
Json
\u9183
Python
\u9183
Perl
\x{9183}
PHP
\x{9183}
Ruby
\u{9183}
Rust
\u{9183}
Go
\u9183

Web

CSS
\009183
HtmlDecimal
醃
HtmlHexadecimal
醃
Url
%E9%86%83

Code

MD5
8b21b99721d8fc642fe6587e466f83df
Sha1
77d122c852741a3171ed56c4fb594c7e1b715181
Base64
6YaD

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9183';
console.log(char);  // Output: 醃

Java:

char c = '\u9183';
System.out.println(c);  // Output: 醃

JSON:

{"text": "\u9183"}  // Value: 醃

Python:

char = '\u9183'
print(char)  # Output: 醃

Perl:

my $char = "\x{9183}";
print $char;  # Output: 醃

PHP:

$char = "\x{9183}";
echo $char;  // Output: 醃

Ruby:

char = "\u{9183}"
puts char  # Output: 醃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009183";  /* Display: 醃 */
}

HTML Decimal:

<p>HTML decimal: &#37251;</p>  <!-- Display: 醃 -->

HTML Hexadecimal:

<p>HTML hex: &#x9183;</p>  <!-- Display: 醃 -->

URL Encoding:

// 醃 URL encoding
https://unicodefinder.com/search.php?query=%E9%86%83

Encodings

MD5:

8b21b99721d8fc642fe6587e466f83df

SHA1:

77d122c852741a3171ed56c4fb594c7e1b715181

Base64:

6YaD