Unicode Finder

"塒" U+5852(CJK UNIFIED IDEOGRAPH-5852)

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

Programming

C
\u5852
JavaScript
\u5852
Java
\u5852
Json
\u5852
Python
\u5852
Perl
\x{5852}
PHP
\x{5852}
Ruby
\u{5852}
Rust
\u{5852}
Go
\u5852

Web

CSS
\005852
HtmlDecimal
塒
HtmlHexadecimal
塒
Url
%E5%A1%92

Code

MD5
e27a4fad66090f3ef8817c621bb6673b
Sha1
8f8137eb6440145b6cc4bfc0c027059185153bcb
Base64
5aGS

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u5852';
console.log(char);  // Output: 塒

Java:

char c = '\u5852';
System.out.println(c);  // Output: 塒

JSON:

{"text": "\u5852"}  // Value: 塒

Python:

char = '\u5852'
print(char)  # Output: 塒

Perl:

my $char = "\x{5852}";
print $char;  # Output: 塒

PHP:

$char = "\x{5852}";
echo $char;  // Output: 塒

Ruby:

char = "\u{5852}"
puts char  # Output: 塒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005852";  /* Display: 塒 */
}

HTML Decimal:

<p>HTML decimal: &#22610;</p>  <!-- Display: 塒 -->

HTML Hexadecimal:

<p>HTML hex: &#x5852;</p>  <!-- Display: 塒 -->

URL Encoding:

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

Encodings

MD5:

e27a4fad66090f3ef8817c621bb6673b

SHA1:

8f8137eb6440145b6cc4bfc0c027059185153bcb

Base64:

5aGS