Unicode Finder

"变" U+53D8(CJK UNIFIED IDEOGRAPH-53D8)

U+53D8
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-53D8

Programming

C
\u53D8
JavaScript
\u53D8
Java
\u53D8
Json
\u53D8
Python
\u53D8
Perl
\x{53D8}
PHP
\x{53D8}
Ruby
\u{53D8}
Rust
\u{53D8}
Go
\u53D8

Web

CSS
\0053D8
HtmlDecimal
变
HtmlHexadecimal
变
Url
%E5%8F%98

Code

MD5
c645567ae1f9256288c6b0f9e070ed6f
Sha1
d58a8d812424d887bd5cff0a39578979d0a26c94
Base64
5Y+Y

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u53D8';
console.log(char);  // Output: 变

Java:

char c = '\u53D8';
System.out.println(c);  // Output: 变

JSON:

{"text": "\u53D8"}  // Value: 变

Python:

char = '\u53D8'
print(char)  # Output: 变

Perl:

my $char = "\x{53D8}";
print $char;  # Output: 变

PHP:

$char = "\x{53D8}";
echo $char;  // Output: 变

Ruby:

char = "\u{53D8}"
puts char  # Output: 变

Rust:

let c = '\u{53D8}';
println!("{}", c);  // Output: 变

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0053D8";  /* Display: 变 */
}

HTML Decimal:

<p>HTML decimal: &#21464;</p>  <!-- Display: 变 -->

HTML Hexadecimal:

<p>HTML hex: &#x53D8;</p>  <!-- Display: 变 -->

URL Encoding:

// 变 URL encoding
https://unicodefinder.com/search.php?query=%E5%8F%98

Encodings

MD5:

c645567ae1f9256288c6b0f9e070ed6f

SHA1:

d58a8d812424d887bd5cff0a39578979d0a26c94

Base64:

5Y+Y