Unicode Finder

"塬" U+586C(CJK UNIFIED IDEOGRAPH-586C)

U+586C
Bloknaam
CJK Unified Ideographs
Naam
CJK UNIFIED IDEOGRAPH-586C

Programming

C
\u586C
JavaScript
\u586C
Java
\u586C
Json
\u586C
Python
\u586C
Perl
\x{586C}
PHP
\x{586C}
Ruby
\u{586C}
Rust
\u{586C}
Go
\u586C

Web

CSS
\00586C
HtmlDecimal
塬
HtmlHexadecimal
塬
Url
%E5%A1%AC

Code

MD5
74a87b183662e2267f8658295656ab63
Sha1
374a0ff8b45a74a9dc111759d82d3eb5bcdada8e
Base64
5aGs

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u586C';
console.log(char);  // Output: 塬

Java:

char c = '\u586C';
System.out.println(c);  // Output: 塬

JSON:

{"text": "\u586C"}  // Value: 塬

Python:

char = '\u586C'
print(char)  # Output: 塬

Perl:

my $char = "\x{586C}";
print $char;  # Output: 塬

PHP:

$char = "\x{586C}";
echo $char;  // Output: 塬

Ruby:

char = "\u{586C}"
puts char  # Output: 塬

Rust:

let c = '\u{586C}';
println!("{}", c);  // Output: 塬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00586C";  /* Display: 塬 */
}

HTML Decimal:

<p>HTML decimal: &#22636;</p>  <!-- Display: 塬 -->

HTML Hexadecimal:

<p>HTML hex: &#x586C;</p>  <!-- Display: 塬 -->

URL Encoding:

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

Encodings

MD5:

74a87b183662e2267f8658295656ab63

SHA1:

374a0ff8b45a74a9dc111759d82d3eb5bcdada8e

Base64:

5aGs