Unicode Finder

"櫕" U+6AD5(CJK UNIFIED IDEOGRAPH-6AD5)

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

Programming

C
\u6AD5
JavaScript
\u6AD5
Java
\u6AD5
Json
\u6AD5
Python
\u6AD5
Perl
\x{6AD5}
PHP
\x{6AD5}
Ruby
\u{6AD5}
Rust
\u{6AD5}
Go
\u6AD5

Web

CSS
\006AD5
HtmlDecimal
櫕
HtmlHexadecimal
櫕
Url
%E6%AB%95

Code

MD5
08b01c6548944c7f9724ee183cf0dabd
Sha1
47de192f388bf4f3bb2804a11c887db52d13abe5
Base64
5quV

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6AD5';
console.log(char);  // Output: 櫕

Java:

char c = '\u6AD5';
System.out.println(c);  // Output: 櫕

JSON:

{"text": "\u6AD5"}  // Value: 櫕

Python:

char = '\u6AD5'
print(char)  # Output: 櫕

Perl:

my $char = "\x{6AD5}";
print $char;  # Output: 櫕

PHP:

$char = "\x{6AD5}";
echo $char;  // Output: 櫕

Ruby:

char = "\u{6AD5}"
puts char  # Output: 櫕

Rust:

let c = '\u{6AD5}';
println!("{}", c);  // Output: 櫕

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006AD5";  /* Display: 櫕 */
}

HTML Decimal:

<p>HTML decimal: &#27349;</p>  <!-- Display: 櫕 -->

HTML Hexadecimal:

<p>HTML hex: &#x6AD5;</p>  <!-- Display: 櫕 -->

URL Encoding:

// 櫕 URL encoding
https://unicodefinder.com/search.php?query=%E6%AB%95

Encodings

MD5:

08b01c6548944c7f9724ee183cf0dabd

SHA1:

47de192f388bf4f3bb2804a11c887db52d13abe5

Base64:

5quV