Unicode Finder

"嵰" U+5D70(CJK UNIFIED IDEOGRAPH-5D70)

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

Programming

C
\u5D70
JavaScript
\u5D70
Java
\u5D70
Json
\u5D70
Python
\u5D70
Perl
\x{5D70}
PHP
\x{5D70}
Ruby
\u{5D70}
Rust
\u{5D70}
Go
\u5D70

Web

CSS
\005D70
HtmlDecimal
嵰
HtmlHexadecimal
嵰
Url
%E5%B5%B0

Code

MD5
a27e38fdec098f7aef7da6dff56d2ef6
Sha1
b0843ed903fcfa9558e32d0fb4d87502485aaa7d
Base64
5bWw

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5D70';
console.log(char);  // Output: 嵰

Java:

char c = '\u5D70';
System.out.println(c);  // Output: 嵰

JSON:

{"text": "\u5D70"}  // Value: 嵰

Python:

char = '\u5D70'
print(char)  # Output: 嵰

Perl:

my $char = "\x{5D70}";
print $char;  # Output: 嵰

PHP:

$char = "\x{5D70}";
echo $char;  // Output: 嵰

Ruby:

char = "\u{5D70}"
puts char  # Output: 嵰

Rust:

let c = '\u{5D70}';
println!("{}", c);  // Output: 嵰

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005D70";  /* Display: 嵰 */
}

HTML Decimal:

<p>HTML decimal: &#23920;</p>  <!-- Display: 嵰 -->

HTML Hexadecimal:

<p>HTML hex: &#x5D70;</p>  <!-- Display: 嵰 -->

URL Encoding:

// 嵰 URL encoding
https://unicodefinder.com/search.php?query=%E5%B5%B0

Encodings

MD5:

a27e38fdec098f7aef7da6dff56d2ef6

SHA1:

b0843ed903fcfa9558e32d0fb4d87502485aaa7d

Base64:

5bWw