Unicode Finder

"艵" U+8275(CJK UNIFIED IDEOGRAPH-8275)

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

Programming

C
\u8275
JavaScript
\u8275
Java
\u8275
Json
\u8275
Python
\u8275
Perl
\x{8275}
PHP
\x{8275}
Ruby
\u{8275}
Rust
\u{8275}
Go
\u8275

Web

CSS
\008275
HtmlDecimal
艵
HtmlHexadecimal
艵
Url
%E8%89%B5

Code

MD5
90312b25da07553b55b2f4108d219975
Sha1
6f6dcd4ed14e182d13ed07b228fadae27daccda3
Base64
6Im1

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8275';
console.log(char);  // Output: 艵

Java:

char c = '\u8275';
System.out.println(c);  // Output: 艵

JSON:

{"text": "\u8275"}  // Value: 艵

Python:

char = '\u8275'
print(char)  # Output: 艵

Perl:

my $char = "\x{8275}";
print $char;  # Output: 艵

PHP:

$char = "\x{8275}";
echo $char;  // Output: 艵

Ruby:

char = "\u{8275}"
puts char  # Output: 艵

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008275";  /* Display: 艵 */
}

HTML Decimal:

<p>HTML decimal: &#33397;</p>  <!-- Display: 艵 -->

HTML Hexadecimal:

<p>HTML hex: &#x8275;</p>  <!-- Display: 艵 -->

URL Encoding:

// 艵 URL encoding
https://unicodefinder.com/search.php?query=%E8%89%B5

Encodings

MD5:

90312b25da07553b55b2f4108d219975

SHA1:

6f6dcd4ed14e182d13ed07b228fadae27daccda3

Base64:

6Im1