Unicode Finder

"邕" U+9095(CJK UNIFIED IDEOGRAPH-9095)

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

Programming

C
\u9095
JavaScript
\u9095
Java
\u9095
Json
\u9095
Python
\u9095
Perl
\x{9095}
PHP
\x{9095}
Ruby
\u{9095}
Rust
\u{9095}
Go
\u9095

Web

CSS
\009095
HtmlDecimal
邕
HtmlHexadecimal
邕
Url
%E9%82%95

Code

MD5
a7d4e2a0387a67a2314b03dae5804066
Sha1
30fd9babc0ab0f63373bddeb48115a0222759163
Base64
6YKV

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9095';
console.log(char);  // Output: 邕

Java:

char c = '\u9095';
System.out.println(c);  // Output: 邕

JSON:

{"text": "\u9095"}  // Value: 邕

Python:

char = '\u9095'
print(char)  # Output: 邕

Perl:

my $char = "\x{9095}";
print $char;  # Output: 邕

PHP:

$char = "\x{9095}";
echo $char;  // Output: 邕

Ruby:

char = "\u{9095}"
puts char  # Output: 邕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009095";  /* Display: 邕 */
}

HTML Decimal:

<p>HTML decimal: &#37013;</p>  <!-- Display: 邕 -->

HTML Hexadecimal:

<p>HTML hex: &#x9095;</p>  <!-- Display: 邕 -->

URL Encoding:

// 邕 URL encoding
https://unicodefinder.com/search.php?query=%E9%82%95

Encodings

MD5:

a7d4e2a0387a67a2314b03dae5804066

SHA1:

30fd9babc0ab0f63373bddeb48115a0222759163

Base64:

6YKV