Unicode Finder

"荡" U+8361(CJK UNIFIED IDEOGRAPH-8361)

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

Programming

C
\u8361
JavaScript
\u8361
Java
\u8361
Json
\u8361
Python
\u8361
Perl
\x{8361}
PHP
\x{8361}
Ruby
\u{8361}
Rust
\u{8361}
Go
\u8361

Web

CSS
\008361
HtmlDecimal
荡
HtmlHexadecimal
荡
Url
%E8%8D%A1

Code

MD5
d50e94b19dd7a435ac8e6a36503855cd
Sha1
ab26cb400611b1fc28f9a76bb4c9981fcaaf57f1
Base64
6I2h

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8361';
console.log(char);  // Output: 荡

Java:

char c = '\u8361';
System.out.println(c);  // Output: 荡

JSON:

{"text": "\u8361"}  // Value: 荡

Python:

char = '\u8361'
print(char)  # Output: 荡

Perl:

my $char = "\x{8361}";
print $char;  # Output: 荡

PHP:

$char = "\x{8361}";
echo $char;  // Output: 荡

Ruby:

char = "\u{8361}"
puts char  # Output: 荡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008361";  /* Display: 荡 */
}

HTML Decimal:

<p>HTML decimal: &#33633;</p>  <!-- Display: 荡 -->

HTML Hexadecimal:

<p>HTML hex: &#x8361;</p>  <!-- Display: 荡 -->

URL Encoding:

// 荡 URL encoding
https://unicodefinder.com/search.php?query=%E8%8D%A1

Encodings

MD5:

d50e94b19dd7a435ac8e6a36503855cd

SHA1:

ab26cb400611b1fc28f9a76bb4c9981fcaaf57f1

Base64:

6I2h