Unicode Finder

"倳" U+5033(CJK UNIFIED IDEOGRAPH-5033)

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

Programming

C
\u5033
JavaScript
\u5033
Java
\u5033
Json
\u5033
Python
\u5033
Perl
\x{5033}
PHP
\x{5033}
Ruby
\u{5033}
Rust
\u{5033}
Go
\u5033

Web

CSS
\005033
HtmlDecimal
倳
HtmlHexadecimal
倳
Url
%E5%80%B3

Code

MD5
a12519871da8ad2ea9a955fefc8f543f
Sha1
1e2f3b0beaed55c2a5d169ce0c2ad4df15aea069
Base64
5YCz

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5033';
console.log(char);  // Output: 倳

Java:

char c = '\u5033';
System.out.println(c);  // Output: 倳

JSON:

{"text": "\u5033"}  // Value: 倳

Python:

char = '\u5033'
print(char)  # Output: 倳

Perl:

my $char = "\x{5033}";
print $char;  # Output: 倳

PHP:

$char = "\x{5033}";
echo $char;  // Output: 倳

Ruby:

char = "\u{5033}"
puts char  # Output: 倳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005033";  /* Display: 倳 */
}

HTML Decimal:

<p>HTML decimal: &#20531;</p>  <!-- Display: 倳 -->

HTML Hexadecimal:

<p>HTML hex: &#x5033;</p>  <!-- Display: 倳 -->

URL Encoding:

// 倳 URL encoding
https://unicodefinder.com/search.php?query=%E5%80%B3

Encodings

MD5:

a12519871da8ad2ea9a955fefc8f543f

SHA1:

1e2f3b0beaed55c2a5d169ce0c2ad4df15aea069

Base64:

5YCz