Unicode Finder

"塲" U+5872(CJK UNIFIED IDEOGRAPH-5872)

U+5872
Bloknaam
CJK Unified Ideographs
Naam
CJK UNIFIED IDEOGRAPH-5872

Programming

C
\u5872
JavaScript
\u5872
Java
\u5872
Json
\u5872
Python
\u5872
Perl
\x{5872}
PHP
\x{5872}
Ruby
\u{5872}
Rust
\u{5872}
Go
\u5872

Web

CSS
\005872
HtmlDecimal
塲
HtmlHexadecimal
塲
Url
%E5%A1%B2

Code

MD5
5ac0538e893c69839dc6a4e86ac4144f
Sha1
cb8a211559e3179bcdbe3bdbf6e8e950af52a81f
Base64
5aGy

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u5872';
console.log(char);  // Output: 塲

Java:

char c = '\u5872';
System.out.println(c);  // Output: 塲

JSON:

{"text": "\u5872"}  // Value: 塲

Python:

char = '\u5872'
print(char)  # Output: 塲

Perl:

my $char = "\x{5872}";
print $char;  # Output: 塲

PHP:

$char = "\x{5872}";
echo $char;  // Output: 塲

Ruby:

char = "\u{5872}"
puts char  # Output: 塲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005872";  /* Display: 塲 */
}

HTML Decimal:

<p>HTML decimal: &#22642;</p>  <!-- Display: 塲 -->

HTML Hexadecimal:

<p>HTML hex: &#x5872;</p>  <!-- Display: 塲 -->

URL Encoding:

// 塲 URL encoding
https://unicodefinder.com/search.php?query=%E5%A1%B2

Encodings

MD5:

5ac0538e893c69839dc6a4e86ac4144f

SHA1:

cb8a211559e3179bcdbe3bdbf6e8e950af52a81f

Base64:

5aGy