Unicode Finder

"場" U+5834(CJK UNIFIED IDEOGRAPH-5834)

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

Programming

C
\u5834
JavaScript
\u5834
Java
\u5834
Json
\u5834
Python
\u5834
Perl
\x{5834}
PHP
\x{5834}
Ruby
\u{5834}
Rust
\u{5834}
Go
\u5834

Web

CSS
\005834
HtmlDecimal
場
HtmlHexadecimal
場
Url
%E5%A0%B4

Code

MD5
5d6e07abd357c9cb894e535708f61f1f
Sha1
edb84a4b9c87c32d5d9f51ff0f6a3951faf74c8c
Base64
5aC0

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5834';
console.log(char);  // Output: 場

Java:

char c = '\u5834';
System.out.println(c);  // Output: 場

JSON:

{"text": "\u5834"}  // Value: 場

Python:

char = '\u5834'
print(char)  # Output: 場

Perl:

my $char = "\x{5834}";
print $char;  # Output: 場

PHP:

$char = "\x{5834}";
echo $char;  // Output: 場

Ruby:

char = "\u{5834}"
puts char  # Output: 場

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005834";  /* Display: 場 */
}

HTML Decimal:

<p>HTML decimal: &#22580;</p>  <!-- Display: 場 -->

HTML Hexadecimal:

<p>HTML hex: &#x5834;</p>  <!-- Display: 場 -->

URL Encoding:

// 場 URL encoding
https://unicodefinder.com/search.php?query=%E5%A0%B4

Encodings

MD5:

5d6e07abd357c9cb894e535708f61f1f

SHA1:

edb84a4b9c87c32d5d9f51ff0f6a3951faf74c8c

Base64:

5aC0